const DEFAULT_SENDER = process.env.DEFAULT_SENDER ?? 'help@createinc.co'; export const DEFAULT_SEND_OPTIONS = { from: DEFAULT_SENDER, }; export type SendOptions = { /** * @default {DEFAULT_SENDER} */ from?: string; to: string; subject: string; text: string; /** * @default converts `text` to a sensible html string (not recommended) */ html?: string; };