EmailSubmittedResponse

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

Bases: object

Response object that is returned to sender upon successfully submitting the email request.

Methods

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

Attributes

envelope_id [Required] Gets the envelope_id of this EmailSubmittedResponse.
message_id [Required] Gets the message_id of this EmailSubmittedResponse.
suppressed_recipients [Required] Gets the suppressed_recipients of this EmailSubmittedResponse.
__init__(**kwargs)

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

Parameters:
  • message_id (str) – The value to assign to the message_id property of this EmailSubmittedResponse.
  • envelope_id (str) – The value to assign to the envelope_id property of this EmailSubmittedResponse.
  • suppressed_recipients (list[oci.email_data_plane.models.EmailAddress]) – The value to assign to the suppressed_recipients property of this EmailSubmittedResponse.
envelope_id

[Required] Gets the envelope_id of this EmailSubmittedResponse. Email Delivery generated unique Envelope ID of the email submission. If you need to contact Email Delivery about a particular request, please provide the Envelope ID.

Returns:The envelope_id of this EmailSubmittedResponse.
Return type:str
message_id

[Required] Gets the message_id of this EmailSubmittedResponse. The unique ID for the email’s Message-ID header used for service log correlation. The submission will return an error if the syntax is not a valid RFC 5322 Message-ID. This will be generated if not provided. Example: sdiofu234qwermls24fd@mail.example.com

Returns:The message_id of this EmailSubmittedResponse.
Return type:str
suppressed_recipients

[Required] Gets the suppressed_recipients of this EmailSubmittedResponse. Return list of suppressed email addresses.

Returns:The suppressed_recipients of this EmailSubmittedResponse.
Return type:list[oci.email_data_plane.models.EmailAddress]