import { getMailFrom, getMailTransport } from "./transport"; export async function sendEmail(to: string, template: { subject: string; html: string }) { const transport = getMailTransport(); await transport.sendMail({ from: getMailFrom(), to, subject: template.subject, html: template.html }); }