* feat: add password reset functionality with email template and credentials config * feat: add authentication configuration options and improve development setup * feat: add password-based authentication and signup control flags * feat: update auth form to support name field * fix: prevent password icon from overlaying the input text --------- Co-authored-by: Henry <henry_ball@hotmail.co.uk>
51 lines
1.2 KiB
TypeScript
51 lines
1.2 KiB
TypeScript
import { render } from "@react-email/render";
|
|
import nodemailer from "nodemailer";
|
|
|
|
import JoinWorkspaceTemplate from "./templates/join-workspace";
|
|
import MagicLinkTemplate from "./templates/magic-link";
|
|
import ResetPasswordTemplate from "./templates/reset-password";
|
|
|
|
type Templates = "MAGIC_LINK" | "JOIN_WORKSPACE" | "RESET_PASSWORD";
|
|
|
|
const emailTemplates: Record<Templates, React.FC> = {
|
|
MAGIC_LINK: MagicLinkTemplate,
|
|
JOIN_WORKSPACE: JoinWorkspaceTemplate,
|
|
RESET_PASSWORD: ResetPasswordTemplate,
|
|
};
|
|
|
|
const transporter = nodemailer.createTransport({
|
|
host: process.env.SMTP_HOST,
|
|
port: Number(process.env.SMTP_PORT),
|
|
secure: true,
|
|
auth: {
|
|
user: process.env.SMTP_USER,
|
|
pass: process.env.SMTP_PASSWORD,
|
|
},
|
|
});
|
|
|
|
export const sendEmail = async (
|
|
to: string,
|
|
subject: string,
|
|
template: Templates,
|
|
data: Record<string, string>,
|
|
) => {
|
|
const EmailTemplate = emailTemplates[template];
|
|
|
|
const html = await render(<EmailTemplate {...data} />, { pretty: true });
|
|
|
|
const options = {
|
|
from: process.env.EMAIL_FROM,
|
|
to,
|
|
subject,
|
|
html,
|
|
};
|
|
|
|
const response = await transporter.sendMail(options);
|
|
|
|
if (!response.accepted.length) {
|
|
throw new Error(`Failed to send email: ${response.response}`);
|
|
}
|
|
|
|
return response;
|
|
};
|