@chelseaapps/notification documentation
File
src/email/email.interface.ts
Index
Properties
to
to: string[]
Type : string[]
Email addresses to send to
export interface IEmailPayload {
/**
* Email addresses to send to
*/
to: string[];
/**
* Email subject
*/
subject: string;
/**
* Email HTML content
*/
body: string;
/**
* Email from
*/
from: string;
}Was this helpful?