Skip to content

Verify Email Identity

ses_verify_email_identity R Documentation

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

Description

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.

Usage

ses_verify_email_identity(EmailAddress)

Arguments

EmailAddress

[required] The email address to be verified.

Value

An empty list.

Request syntax

svc$verify_email_identity(
  EmailAddress = "string"
)

Examples

## Not run: 
# The following example starts the email address verification process with
# Amazon SES:
svc$verify_email_identity(
  EmailAddress = "user@example.com"
)

## End(Not run)