Skip to main content

ISESV2Destination

Interface in AWS.SESV2

Interface for Destination.

Properties

BccAddresses

property BccAddresses: TList<string>

Specifies a list of email addresses as BCC (Blind Carbon Copy) recipients for the email.

CcAddresses

property CcAddresses: TList<string>

Specifies a list of email addresses as CC (Carbon Copy) recipients for the email.

ToAddresses

property ToAddresses: TList<string>

Specifies a list of email addresses as recipients for the email.

Methods

AddBccAddress

procedure AddBccAddress(const AEmailAddress: string);

Add a BCC (Blind Carbon Copy) recipient to the email destination.

Parameters

NameDescription
AEmailAddressSpecify an email address to add to the BCC (Blind Carbon Copy) recipient list.

AddCcAddress

procedure AddCcAddress(const AEmailAddress: string);

Add a CC (Carbon Copy) recipient to the email destination.

Parameters

NameDescription
AEmailAddressSpecify an email address to add to the CC (Carbon Copy) recipient list.

AddToAddress

procedure AddToAddress(const AEmailAddress: string);

Add a recipient to the email destination.

Parameters

NameDescription
AEmailAddressSpecify an email address to add to the recipient list.