export type SmtpOptions = { readonly host: string; readonly port: number; readonly username: string; readonly password: string; readonly sender: string; }; export type SmtpAttachment = { content: Buffer | string; filename: string; contentType: string; encoding?: string; };