SES / Client / list_verified_email_addresses

list_verified_email_addresses#

SES.Client.list_verified_email_addresses()#

Deprecated. Use the ListIdentities operation to list the email addresses and domains associated with your account.

See also: AWS API Documentation

Request Syntax

response = client.list_verified_email_addresses()
Return type:

dict

Returns:

Response Syntax

{
    'VerifiedEmailAddresses': [
        'string',
    ]
}

Response Structure

  • (dict) –

    A list of email addresses that you have verified with Amazon SES under your Amazon Web Services account.

    • VerifiedEmailAddresses (list) –

      A list of email addresses that have been verified.

      • (string) –

Examples

The following example lists all email addresses that have been submitted for verification with Amazon SES:

response = client.list_verified_email_addresses(
)

print(response)

Expected Output:

{
    'VerifiedEmailAddresses': [
        'user1@example.com',
        'user2@example.com',
    ],
    'ResponseMetadata': {
        '...': '...',
    },
}