[−][src]Struct rusoto_ses::RecipientDsnFields
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 PartialEq<RecipientDsnFields> for RecipientDsnFields
[src]
fn eq(&self, other: &RecipientDsnFields) -> bool
[src]
fn ne(&self, other: &RecipientDsnFields) -> bool
[src]
impl Default for RecipientDsnFields
[src]
fn default() -> RecipientDsnFields
[src]
impl Clone for RecipientDsnFields
[src]
fn clone(&self) -> RecipientDsnFields
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for RecipientDsnFields
[src]
Auto Trait Implementations
impl Send for RecipientDsnFields
impl Sync for RecipientDsnFields
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self