Type Alias MailModuleOptions
MailModuleOptions: {
auth: { password: string; username: string };
defaultSendOptions: Required<Pick<SendMailOptions, "from">>;
host: string;
port: 25 | 465 | 587;
secure: boolean;
}
Type declaration
auth: { password: string; username: string }
defaultSendOptions: Required<Pick<SendMailOptions, "from">>
host: string
port: 25 | 465 | 587
secure: boolean