[][src]Struct rusoto_ses::RecipientDsnFields

pub struct RecipientDsnFields {
    pub action: String,
    pub diagnostic_code: Option<String>,
    pub extension_fields: Option<Vec<ExtensionField>>,
    pub final_recipient: Option<String>,
    pub last_attempt_date: Option<String>,
    pub remote_mta: Option<String>,
    pub status: String,
}

Recipient-related information to include in the Delivery Status Notification (DSN) when an email that Amazon SES receives on your behalf bounces.

For information about receiving email through Amazon SES, see the Amazon SES Developer Guide.

Fields

action: String

The action performed by the reporting mail transfer agent (MTA) as a result of its attempt to deliver the message to the recipient address. This is required by RFC 3464.

diagnostic_code: Option<String>

An extended explanation of what went wrong; this is usually an SMTP response. See RFC 3463 for the correct formatting of this parameter.

extension_fields: Option<Vec<ExtensionField>>

Additional X-headers to include in the DSN.

final_recipient: Option<String>

The email address that the message was ultimately delivered to. This corresponds to the Final-Recipient in the DSN. If not specified, FinalRecipient will be set to the Recipient specified in the BouncedRecipientInfo structure. Either FinalRecipient or the recipient in BouncedRecipientInfo must be a recipient of the original bounced message.

Do not prepend the FinalRecipient email address with rfc 822;, as described in RFC 3798.

last_attempt_date: Option<String>

The time the final delivery attempt was made, in RFC 822 date-time format.

remote_mta: Option<String>

The MTA to which the remote MTA attempted to deliver the message, formatted as specified in RFC 3464 (mta-name-type; mta-name). This parameter typically applies only to propagating synchronous bounces.

status: String

The status code that indicates what went wrong. This is required by RFC 3464.

Trait Implementations

impl Clone for RecipientDsnFields[src]

impl Debug for RecipientDsnFields[src]

impl Default for RecipientDsnFields[src]

impl PartialEq<RecipientDsnFields> for RecipientDsnFields[src]

impl StructuralPartialEq for RecipientDsnFields[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.