SES / Client / exceptions / FromEmailAddressNotVerifiedException

FromEmailAddressNotVerifiedException#

class SES.Client.exceptions.FromEmailAddressNotVerifiedException#

Indicates that the sender address specified for a custom verification email is not verified, and is therefore not eligible to send the custom verification email.

Example

try:
  ...
except client.exceptions.FromEmailAddressNotVerifiedException as e:
  print(e.response)
response#

The parsed error response. All exceptions have a top level Error key that provides normalized access to common exception atrributes. All other keys are specific to this service or exception class.

Syntax

{
    'FromEmailAddress': 'string',
    'Error': {
        'Code': 'string',
        'Message': 'string'
    }
}

Structure

  • (dict) –

    Indicates that the sender address specified for a custom verification email is not verified, and is therefore not eligible to send the custom verification email.

    • FromEmailAddress (string) –

      Indicates that the from email address associated with the custom verification email template is not verified.

    • Error (dict) – Normalized access to common exception attributes.

      • Code (string) – An identifier specifying the exception type.

      • Message (string) – A descriptive message explaining why the exception occured.