Skip to content

Get Account Sending Enabled

ses_get_account_sending_enabled R Documentation

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

Description

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.

Usage

ses_get_account_sending_enabled()

Value

A list with the following syntax:

list(
  Enabled = TRUE|FALSE
)

Examples

## Not run: 
# The following example returns if sending status for an account is
# enabled. (true / false):
svc$get_account_sending_enabled()

## End(Not run)