Show / Hide Table of Contents

Class EmailSubmittedResponse

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

Inheritance
object
EmailSubmittedResponse
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.EmaildataplaneService.Models
Assembly: OCI.DotNetSDK.Emaildataplane.dll
Syntax
public class EmailSubmittedResponse

Properties

EnvelopeId

Declaration
[Required(ErrorMessage = "EnvelopeId is required.")]
[JsonProperty(PropertyName = "envelopeId")]
public string EnvelopeId { get; set; }
Property Value
Type Description
string

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.

Remarks

Required

MessageId

Declaration
[Required(ErrorMessage = "MessageId is required.")]
[JsonProperty(PropertyName = "messageId")]
public string MessageId { get; set; }
Property Value
Type Description
string

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

Remarks

Required

SuppressedRecipients

Declaration
[Required(ErrorMessage = "SuppressedRecipients is required.")]
[JsonProperty(PropertyName = "suppressedRecipients")]
public List<EmailAddress> SuppressedRecipients { get; set; }
Property Value
Type Description
List<EmailAddress>

Return list of suppressed email addresses.

Remarks

Required

In this article
Back to top