Recipients

class oci.email_data_plane.models.Recipients(**kwargs)

Bases: object

The destination for the email, composed of To, CC, and BCC fields. NOTE: At least one of To, CC, and BCC must be provided. And max 50 recipients are allowed across the To:, CC: and BCC: fields.

Methods

__init__(**kwargs) Initializes a new Recipients object with values from keyword arguments.

Attributes

bcc Gets the bcc of this Recipients.
cc Gets the cc of this Recipients.
to Gets the to of this Recipients.
__init__(**kwargs)

Initializes a new Recipients object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):

Parameters:
bcc

Gets the bcc of this Recipients. Array of BCC address. Bcc headers can only be viewed by non bcc recipients.

Returns:The bcc of this Recipients.
Return type:list[oci.email_data_plane.models.EmailAddress]
cc

Gets the cc of this Recipients. Array of CC address.

Returns:The cc of this Recipients.
Return type:list[oci.email_data_plane.models.EmailAddress]
to

Gets the to of this Recipients. Array of To address.

Returns:The to of this Recipients.
Return type:list[oci.email_data_plane.models.EmailAddress]