66a4027f1e
- Update BAS account catalog with comprehensive SRU codes and K2 flags - Add currency revaluation service with tests and API route - Add expenses page and account deletion API - Enhance booking templates with new patterns and improved tests - Improve transaction categorization with template picker and description matching - Polish dashboard, onboarding, import, and transaction UIs - Refactor year-end service for multi-step closing - Move SRU generator to ne-bilaga, remove standalone SRU export - Remove unused dev docs, mock data, and extension hooks - Add invoice delivery note sequences migration Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
80 lines
2.2 KiB
TypeScript
80 lines
2.2 KiB
TypeScript
/**
|
|
* Resend Email Service Implementation
|
|
*
|
|
* Implements EmailService using the Resend API.
|
|
*/
|
|
|
|
import { Resend } from 'resend'
|
|
import { createLogger } from '@/lib/logger'
|
|
import type { EmailService, SendEmailOptions, SendEmailResult } from '@/lib/email/service'
|
|
|
|
const log = createLogger('email')
|
|
|
|
const DEFAULT_FROM_EMAIL = process.env.RESEND_FROM_EMAIL || 'noreply@localhost'
|
|
|
|
let resendClient: Resend | null = null
|
|
|
|
function getResendClient(): Resend {
|
|
if (!resendClient) {
|
|
if (!process.env.RESEND_API_KEY) {
|
|
throw new Error('RESEND_API_KEY is not configured')
|
|
}
|
|
resendClient = new Resend(process.env.RESEND_API_KEY)
|
|
}
|
|
return resendClient
|
|
}
|
|
|
|
function isResendConfigured(): boolean {
|
|
return !!process.env.RESEND_API_KEY && !!process.env.RESEND_FROM_EMAIL && process.env.RESEND_FROM_EMAIL !== 'noreply@localhost'
|
|
}
|
|
|
|
export class ResendEmailService implements EmailService {
|
|
async sendEmail(options: SendEmailOptions): Promise<SendEmailResult> {
|
|
const { to, subject, html, text, replyTo, fromName, attachments } = options
|
|
|
|
if (!this.isConfigured()) {
|
|
return { success: false, error: 'Email service is not configured' }
|
|
}
|
|
|
|
const from = fromName
|
|
? `${fromName} via Gnubok <${DEFAULT_FROM_EMAIL}>`
|
|
: `Gnubok <${DEFAULT_FROM_EMAIL}>`
|
|
|
|
try {
|
|
const resend = getResendClient()
|
|
const response = await resend.emails.send({
|
|
from,
|
|
to: Array.isArray(to) ? to : [to],
|
|
subject,
|
|
html,
|
|
text,
|
|
replyTo,
|
|
attachments: attachments?.map(att => ({
|
|
filename: att.filename,
|
|
content: typeof att.content === 'string'
|
|
? Buffer.from(att.content, 'base64')
|
|
: Buffer.from(att.content),
|
|
contentType: att.contentType,
|
|
})),
|
|
})
|
|
|
|
if (response.error) {
|
|
log.error('Resend error:', response.error)
|
|
return { success: false, error: response.error.message }
|
|
}
|
|
|
|
return { success: true, messageId: response.data?.id }
|
|
} catch (error) {
|
|
log.error('Failed to send email:', error)
|
|
return {
|
|
success: false,
|
|
error: error instanceof Error ? error.message : 'Unknown error',
|
|
}
|
|
}
|
|
}
|
|
|
|
isConfigured(): boolean {
|
|
return isResendConfigured()
|
|
}
|
|
}
|