UNPKG

@xmobitea/gn-server

Version:
11 lines (10 loc) 477 B
export interface OnSendMailSuccess { (): void; } export interface OnSendMailError { (error: string): void; } export interface IEmailService { sendMail(toEmail: string, subject: string, contentHtml: string, onSendMailSuccess?: OnSendMailSuccess, onSendMailError?: OnSendMailError): Promise<void>; sendMailToMore(toEmails: string[], subject: string, contentHtml: string, onSendMailSuccess?: OnSendMailSuccess, onSendMailError?: OnSendMailError): Promise<void>; }