:doc:`SES <../../ses>` / Client / verify_email_address

********************
verify_email_address
********************



.. py:method:: SES.Client.verify_email_address(**kwargs)

  

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

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/VerifyEmailAddress>`_  


  **Request Syntax**
  ::

    response = client.verify_email_address(
        EmailAddress='string'
    )
    
  :type EmailAddress: string
  :param EmailAddress: **[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': {
            '...': '...',
        },
    }

  