paws.customer.engagement (version 0.1.0)

ses_set_identity_feedback_forwarding_enabled: Given an identity (an email address or a domain), enables or disables whether Amazon SES forwards bounce and complaint notifications as email

Description

Given an identity (an email address or a domain), enables or disables whether Amazon SES forwards bounce and complaint notifications as email. Feedback forwarding can only be disabled when Amazon Simple Notification Service (Amazon SNS) topics are specified for both bounces and complaints.

Usage

ses_set_identity_feedback_forwarding_enabled(Identity,
  ForwardingEnabled)

Arguments

Identity

[required] The identity for which to set bounce and complaint notification forwarding. Examples: user@example.com, example.com.

ForwardingEnabled

[required] Sets whether Amazon SES will forward bounce and complaint notifications as email. true specifies that Amazon SES will forward bounce and complaint notifications as email, in addition to any Amazon SNS topic publishing otherwise specified. false specifies that Amazon SES will publish bounce and complaint notifications only through Amazon SNS. This value can only be set to false when Amazon SNS topics are set for both Bounce and Complaint notification types.

Request syntax

svc$set_identity_feedback_forwarding_enabled(
  Identity = "string",
  ForwardingEnabled = TRUE|FALSE
)

Details

Feedback forwarding does not apply to delivery notifications. Delivery notifications are only available through Amazon SNS.

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

For more information about using notifications with Amazon SES, see the Amazon SES Developer Guide.

Examples

Run this code
# NOT RUN {
# The following example configures Amazon SES to forward an identity's
# bounces and complaints via email:
# }
# NOT RUN {
svc$set_identity_feedback_forwarding_enabled(
  ForwardingEnabled = TRUE,
  Identity = "user@example.com"
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataCamp Workspace