paws.customer.engagement (version 0.1.0)

ses_set_identity_dkim_enabled: Enables or disables Easy DKIM signing of email sent from an identity: - If Easy DKIM signing is enabled for a domain name identity (such as example

Description

Enables or disables Easy DKIM signing of email sent from an identity:

Usage

ses_set_identity_dkim_enabled(Identity, DkimEnabled)

Arguments

Identity

[required] The identity for which DKIM signing should be enabled or disabled.

DkimEnabled

[required] Sets whether DKIM signing is enabled for an identity. Set to true to enable DKIM signing for this identity; false to disable it.

Request syntax

svc$set_identity_dkim_enabled(
  Identity = "string",
  DkimEnabled = TRUE|FALSE
)

Details

  • If Easy DKIM signing is enabled for a domain name identity (such as example.com), then Amazon SES will DKIM-sign all email sent by addresses under that domain name (for example, user@example.com).

  • If Easy DKIM signing is enabled for an email address, then Amazon SES will DKIM-sign all email sent by that email address.

For email addresses (for example, user@example.com), you can only enable Easy DKIM signing if the corresponding domain (in this case, example.com) has been set up for Easy DKIM using the AWS Console or the VerifyDomainDkim operation.

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

For more information about Easy DKIM signing, go to the Amazon SES Developer Guide.

Examples

Run this code
# NOT RUN {
# The following example configures Amazon SES to Easy DKIM-sign the email
# sent from an identity:
# }
# NOT RUN {
svc$set_identity_dkim_enabled(
  DkimEnabled = TRUE,
  Identity = "user@example.com"
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataCamp Workspace