Select your cookie preferences

We use cookies and similar tools to enhance your experience, provide our services, deliver relevant advertising, and make improvements. Approved third parties also use these tools to help us deliver advertising and provide certain site features.

verify_email_identity

verify_email_identity(**kwargs)

Adds an email address to the list of identities for your Amazon SES account in the current AWS region and attempts to verify it. As a result of executing this operation, a verification email is sent to the specified address.

You can execute this operation no more than once per second.

See also: AWS API Documentation

Request Syntax

response = client.verify_email_identity(
    EmailAddress='string'
)
Parameters
EmailAddress (string) --

[REQUIRED]

The email address to be verified.

Return type
dict
Returns
Response Syntax
{}

Response Structure

  • (dict) --

    An empty element returned on a successful request.

Examples

The following example starts the email address verification process with Amazon SES:

response = client.verify_email_identity(
    EmailAddress='user@example.com',
)

print(response)

Expected Output:

{
    'ResponseMetadata': {
        '...': '...',
    },
}