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

**************************************
get_custom_verification_email_template
**************************************



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

  

  Returns the custom email verification template for the template name you specify.

   

  For more information about custom verification email templates, see `Using Custom Verification Email Templates <https://docs.aws.amazon.com/ses/latest/dg/creating-identities.html#send-email-verify-address-custom>`__ in the *Amazon SES Developer Guide*.

   

  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/GetCustomVerificationEmailTemplate>`_  


  **Request Syntax**
  ::

    response = client.get_custom_verification_email_template(
        TemplateName='string'
    )
    
  :type TemplateName: string
  :param TemplateName: **[REQUIRED]** 

    The name of the custom verification email template to retrieve.

    

  
  
  :rtype: dict
  :returns: 
    
    **Response Syntax**

    
    ::

      {
          'TemplateName': 'string',
          'FromEmailAddress': 'string',
          'TemplateSubject': 'string',
          'TemplateContent': 'string',
          'SuccessRedirectionURL': 'string',
          'FailureRedirectionURL': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 

      The content of the custom verification email template.

      
      

      - **TemplateName** *(string) --* 

        The name of the custom verification email template.

        
      

      - **FromEmailAddress** *(string) --* 

        The email address that the custom verification email is sent from.

        
      

      - **TemplateSubject** *(string) --* 

        The subject line of the custom verification email.

        
      

      - **TemplateContent** *(string) --* 

        The content of the custom verification email.

        
      

      - **SuccessRedirectionURL** *(string) --* 

        The URL that the recipient of the verification email is sent to if his or her address is successfully verified.

        
      

      - **FailureRedirectionURL** *(string) --* 

        The URL that the recipient of the verification email is sent to if his or her address is not successfully verified.

        
  
  **Exceptions**
  
  *   :py:class:`SES.Client.exceptions.CustomVerificationEmailTemplateDoesNotExistException`

  