Skip to content

Verify Domain Identity

ses_verify_domain_identity R Documentation

Adds a domain to the list of identities for your Amazon SES account in the current Amazon Web Services Region and attempts to verify it

Description

Adds a domain to the list of identities for your Amazon SES account in the current Amazon Web Services Region and attempts to verify it. For more information about verifying domains, see Verifying Email Addresses and Domains in the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

Usage

ses_verify_domain_identity(Domain)

Arguments

Domain

[required] The domain to be verified.

Value

A list with the following syntax:

list(
  VerificationToken = "string"
)

Request syntax

svc$verify_domain_identity(
  Domain = "string"
)

Examples

## Not run: 
# The following example starts the domain verification process with Amazon
# SES:
svc$verify_domain_identity(
  Domain = "example.com"
)

## End(Not run)