Represents the response from the mail server. This interface is compatible with SMTPTransport.SentMessageInfo of nodemailer.

interface MailResponse {
    accepted?: (string | Address)[];
    envelope?: Envelope;
    pending?: (string | Address)[];
    rejected?: (string | Address)[];
    response?: string;
}

Properties

accepted?: (string | Address)[]

Array of e-mail addresses that accepted the requests.

envelope?: Envelope

Envelope that contains the sender and recipients info.

pending?: (string | Address)[]

Array of e-mail addresses that are processing the requests.

rejected?: (string | Address)[]

Array of e-mail addresses that rejected the requests.

response?: string

Other response message from the mail server.

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