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

***************************
get_account_sending_enabled
***************************



.. py:method:: SES.Client.get_account_sending_enabled()

  

  Returns the email sending status of the Amazon SES account for the current Region.

   

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


  **Request Syntax**

  ::

    response = client.get_account_sending_enabled()
  :rtype: dict
  :returns: 
    
    **Response Syntax**

    
    ::

      {
          'Enabled': True|False
      }
      
    **Response Structure**

    

    - *(dict) --* 

      Represents a request to return the email sending status for your Amazon SES account in the current Amazon Web Services Region.

      
      

      - **Enabled** *(boolean) --* 

        Describes whether email sending is enabled or disabled for your Amazon SES account in the current Amazon Web Services Region.

        
  

  **Examples**

  The following example returns if sending status for an account is enabled. (true / false):
  ::

    response = client.get_account_sending_enabled(
    )
    
    print(response)

  
  Expected Output:
  ::

    {
        'Enabled': True,
        'ResponseMetadata': {
            '...': '...',
        },
    }

  