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

*********************
verify_email_identity
*********************



.. py:method:: 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 <https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/VerifyEmailIdentity>`_  


  **Request Syntax**
  ::

    response = client.verify_email_identity(
        EmailAddress='string'
    )
    
  :type EmailAddress: string
  :param EmailAddress: **[REQUIRED]** 

    The email address to be verified.

    

  
  
  :rtype: 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': {
            '...': '...',
        },
    }

  