40 lines
954 B
TypeScript
40 lines
954 B
TypeScript
import { type SendMailOptions, createTransport } from "nodemailer";
|
|
import { Credentials, SES } from "aws-sdk";
|
|
import previewEmail from "preview-email";
|
|
|
|
import serverConfig from "~/config/config.server";
|
|
|
|
type SendEmailParams = {
|
|
text?: string;
|
|
html?: string;
|
|
subject: string;
|
|
recipients: string | string[];
|
|
};
|
|
|
|
export default async function sendEmail({ text, html, subject, recipients }: SendEmailParams) {
|
|
const email: SendMailOptions = {
|
|
text,
|
|
html,
|
|
subject,
|
|
encoding: "UTF-8",
|
|
to: recipients,
|
|
from: serverConfig.awsSes.fromEmail,
|
|
};
|
|
|
|
if (process.env.NODE_ENV !== "production" || process.env.CI) {
|
|
return previewEmail(email);
|
|
}
|
|
|
|
const transporter = createTransport({
|
|
SES: new SES({
|
|
region: serverConfig.awsSes.awsRegion,
|
|
credentials: new Credentials({
|
|
accessKeyId: serverConfig.awsSes.accessKeyId,
|
|
secretAccessKey: serverConfig.awsSes.secretAccessKey,
|
|
}),
|
|
}),
|
|
});
|
|
|
|
return transporter.sendMail(email);
|
|
}
|