Represents an envelope that contains the e-mail addresses of the sender and the recipients. This interface is compatible with MimeNode.Envelope of nodemailer.

interface Envelope {
    from: string | false;
    to: string[];
}

Properties

Properties

from: string | false

E-mail address of the sender or false if it should not be shown.

to: string[]

Array of e-mail addresses of recipients.

Copyright Ⓒ 2024 SAP SE or an SAP affiliate company. All rights reserved.