35 lines
1.3 KiB
JavaScript
35 lines
1.3 KiB
JavaScript
import { createTransport } from "nodemailer";
|
|
import { AuthError } from "../errors.js";
|
|
import { html, text } from "../lib/utils/email.js";
|
|
export default function Nodemailer(config) {
|
|
if (!config.server)
|
|
throw new AuthError("Nodemailer requires a `server` configuration");
|
|
return {
|
|
id: "nodemailer",
|
|
type: "email",
|
|
name: "Nodemailer",
|
|
server: { host: "localhost", port: 25, auth: { user: "", pass: "" } },
|
|
from: "Auth.js <no-reply@authjs.dev>",
|
|
maxAge: 24 * 60 * 60,
|
|
async sendVerificationRequest(params) {
|
|
const { identifier, url, provider, theme } = params;
|
|
const { host } = new URL(url);
|
|
const transport = createTransport(provider.server);
|
|
const result = await transport.sendMail({
|
|
to: identifier,
|
|
from: provider.from,
|
|
subject: `Sign in to ${host}`,
|
|
text: text({ url, host }),
|
|
html: html({ url, host, theme }),
|
|
});
|
|
const rejected = result.rejected || [];
|
|
const pending = result.pending || [];
|
|
const failed = rejected.concat(pending).filter(Boolean);
|
|
if (failed.length) {
|
|
throw new Error(`Email (${failed.join(", ")}) could not be sent`);
|
|
}
|
|
},
|
|
options: config,
|
|
};
|
|
}
|