Represents a recipient with name and email details.

interface Recipient {
    ToEmail: string;
    ToName: string;
}

Properties

Properties

ToEmail: string

The email address of the recipient.

ToName: string

The name of the recipient.