interface MailMessage {
    body?: string;
    cC?: EmailRecipients;
    inReplyTo?: string;
    messageId?: string;
    replyBy?: Date;
    replyTo?: EmailRecipients;
    sections?: MailSectionType[];
    senderType?: SenderType;
    subject?: string;
    to?: EmailRecipients;
}

Properties

body?: string

Body of mail.

Mail CC recipients.

inReplyTo?: string

Reply to.

messageId?: string

Message ID of the mail.

replyBy?: Date

Data when should be replied to mail.

replyTo?: EmailRecipients

Reply to Email recipients.

sections?: MailSectionType[]

List of mail section types.

senderType?: SenderType

Mail sender type.

subject?: string

Subject of the mail.

Mail To recipients.