identities: SES Identities

Description Usage Arguments Details Value See Also Examples

Description

Manage SES Identities

Usage

1
2
3
4
5
6
7
8
list_ids(type = c("EmailAddress", "Domain"), nmax = NULL,
  next_token = NULL, ...)

verify_id(address, domain, ...)

get_verification_attrs(identity, ...)

delete_id(identity, ...)

Arguments

type

A character string specifying the identity type.

nmax

An integer specifying the maximum number of identities to return.

next_token

A pagination token

...

Additional arguments passed to sesPOST.

address

A charcter string specifying an email address.

domain

A character string specifying a domain.

identity

An SES identity.

Details

verify_id sends an email verification request to the specified email address.

Value

list_ids returns a character vector of verified email addresses or domains.

See Also

get_id_notification

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
## Not run: 
# verify an addres
verify_id("example@example.com")
get_verification_attrs("example@example.com")

list_ids()

# remove identity
delete_id("example@example.com")

## End(Not run)

cloudyr/aws.ses documentation built on Jan. 14, 2020, 4:58 a.m.