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()
{
    'VerifiedEmailAddresses': [
        'string',
    ]
}
Response Structure
A list of email addresses that you have verified with Amazon SES under your AWS account.
A list of email addresses that have been verified.
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': {
        '...': '...',
    },
}