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'
)
[REQUIRED]
The email address to be verified.
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': {
'...': '...',
},
}