type Param = { to?: string; subject?: string; text?: string; html?: string; senderName?: string; alias?: string | null; }; /** * # Handle mails With Nodemailer */ export default function handleNodemailer({ to, subject, text, html, alias, senderName, }: Param): Promise; export {};