SES / Client / verify_email_identity

verify_email_identity#

SES.Client.verify_email_identity(**kwargs)#

Adds an email address to the list of identities for your Amazon SES account in the current Amazon Web Services 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': {
        '...': '...',
    },
}