export const getMailFrom = (): string => { const from = process.env.MAIL_FROM; if (typeof from === "string") { return from; } throw new Error("MAIL_FROM not found"); };