Added shared mailer package to remove circular dependencies between packages. (#63)

This commit is contained in:
Giancarlo Buomprisco
2024-09-04 03:34:48 +08:00
committed by GitHub
parent d18f810c6e
commit 4c7a3354b9
21 changed files with 256 additions and 38 deletions

View File

@@ -0,0 +1,53 @@
import 'server-only';
import { z } from 'zod';
import { Mailer, MailerSchema } from '@kit/mailers-shared';
type Config = z.infer<typeof MailerSchema>;
const RESEND_API_KEY = z
.string({
description: 'The API key for the Resend API',
required_error: 'Please provide the API key for the Resend API',
})
.parse(process.env.RESEND_API_KEY);
export function createResendMailer() {
return new ResendMailer();
}
/**
* A class representing a mailer using the Resend HTTP API.
* @implements {Mailer}
*/
class ResendMailer implements Mailer {
async sendEmail(config: Config) {
const contentObject =
'text' in config
? {
text: config.text,
}
: {
html: config.html,
};
const res = await fetch('https://api.resend.com/emails', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
Authorization: `Bearer ${RESEND_API_KEY}`,
},
body: JSON.stringify({
from: config.from,
to: [config.to],
subject: config.subject,
...contentObject,
}),
});
if (!res.ok) {
throw new Error(`Failed to send email: ${res.statusText}`);
}
}
}