Interface NotificationEmailInterface

interface NotificationEmailInterface {
    to: string;
    subject: string;
    text?: string;
    html?: string;
}

Properties

Properties

to: string
subject: string
text?: string
html?: string