EmailRawSubmittedResponse¶
- 
class oci.email_data_plane.models.EmailRawSubmittedResponse(**kwargs)¶
- Bases: - object- Response object that is returned to sender upon successfully submitting the email request. - Methods - __init__(**kwargs)- Initializes a new EmailRawSubmittedResponse object with values from keyword arguments. - Attributes - envelope_id- [Required] Gets the envelope_id of this EmailRawSubmittedResponse. - message_id- Gets the message_id of this EmailRawSubmittedResponse. - suppressed_recipients- [Required] Gets the suppressed_recipients of this EmailRawSubmittedResponse. - 
__init__(**kwargs)¶
- Initializes a new EmailRawSubmittedResponse 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 EmailRawSubmittedResponse.
- envelope_id (str) – The value to assign to the envelope_id property of this EmailRawSubmittedResponse.
- suppressed_recipients (list[str]) – The value to assign to the suppressed_recipients property of this EmailRawSubmittedResponse.
 
 - 
envelope_id¶
- [Required] Gets the envelope_id of this EmailRawSubmittedResponse. 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 EmailRawSubmittedResponse. - Return type: - str 
 - 
message_id¶
- Gets the message_id of this EmailRawSubmittedResponse. The unique ID for the email’s Message-ID header used for service log correlation. Example: sdiofu234qwermls24fd@mail.example.com - Returns: - The message_id of this EmailRawSubmittedResponse. - Return type: - str 
 - 
suppressed_recipients¶
- [Required] Gets the suppressed_recipients of this EmailRawSubmittedResponse. Return list of suppressed email addresses. - Returns: - The suppressed_recipients of this EmailRawSubmittedResponse. - Return type: - list[str] 
 
-