Represents an e-mail address. This interface is compatible with Mail.Address of nodemailer.

interface Address {
    address: string;
    name: string;
}

Properties

Properties

address: string

E-mail address of the recipient, e.g. sender@server.com.

name: string

Name of the recipient.

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