interface MailMessage {
    body?: string;
    cC?: EmailRecipients;
    inReplyTo?: string;
    messageId?: string;
    replyTo?: EmailRecipients;
    subject?: string;
    to?: EmailRecipients;
}

Properties

body?: string

The mail body in HTML format.

CC recipients.

inReplyTo?: string

The in-reply-to header value

messageId?: string

The Message Id value

replyTo?: EmailRecipients

Reply To recipients.

subject?: string

The mail subject.

To recipients