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_address

verify_email_address(**kwargs)

Deprecated. Use the VerifyEmailIdentity operation to verify a new email address.

See also: AWS API Documentation

Request Syntax

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

[REQUIRED]

The email address to be verified.

Returns
None

Examples

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

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

print(response)

Expected Output:

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