delete_verified_email_address
(**kwargs)¶Deprecated. Use the DeleteIdentity
operation to delete email addresses and domains.
See also: AWS API Documentation
Request Syntax
response = client.delete_verified_email_address(
EmailAddress='string'
)
[REQUIRED]
An email address to be removed from the list of verified addresses.
Examples
The following example deletes an email address from the list of identities that have been submitted for verification with Amazon SES:
response = client.delete_verified_email_address(
EmailAddress='user@example.com',
)
print(response)
Expected Output:
{
'ResponseMetadata': {
'...': '...',
},
}