UNPKG

nest-box

Version:

A lot of modules for NestJS in this box!

14 lines (13 loc) 242 B
export interface EmailConfig { host: string; port: number; user: string; pass: string; fromName?: string; fromEmail?: string; } export interface EmailSendOptions { to: string subject: string html: string }