Enum rusoto_ses::SendRawEmailError[][src]

pub enum SendRawEmailError {
    AccountSendingPaused(String),
    ConfigurationSetDoesNotExist(String),
    ConfigurationSetSendingPaused(String),
    MailFromDomainNotVerified(String),
    MessageRejected(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by SendRawEmail

Variants

Indicates that email sending is disabled for your entire Amazon SES account.

You can enable or disable email sending for your Amazon SES account using UpdateAccountSendingEnabled.

Indicates that the configuration set does not exist.

Indicates that email sending is disabled for the configuration set.

You can enable or disable email sending for a configuration set using UpdateConfigurationSetSendingEnabled.

Indicates that the message could not be sent because Amazon SES could not read the MX record required to use the specified MAIL FROM domain. For information about editing the custom MAIL FROM domain settings for an identity, see the Amazon SES Developer Guide.

Indicates that the action failed, and the message could not be sent. Check the error stack for more information about what caused the error.

An error occurred dispatching the HTTP request

An error was encountered with AWS credentials.

A validation error occurred. Details from AWS are provided.

An unknown error occurred. The raw HTTP response is provided.

Methods

impl SendRawEmailError
[src]

Trait Implementations

impl Debug for SendRawEmailError
[src]

Formats the value using the given formatter. Read more

impl PartialEq for SendRawEmailError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl From<XmlParseError> for SendRawEmailError
[src]

Performs the conversion.

impl From<CredentialsError> for SendRawEmailError
[src]

Performs the conversion.

impl From<HttpDispatchError> for SendRawEmailError
[src]

Performs the conversion.

impl From<Error> for SendRawEmailError
[src]

Performs the conversion.

impl Display for SendRawEmailError
[src]

Formats the value using the given formatter. Read more

impl Error for SendRawEmailError
[src]

This method is soft-deprecated. Read more

The lower-level cause of this error, if any. Read more

Auto Trait Implementations