Used to enable or disable feedback forwarding for an identity. This setting determines
what happens when an identity is used to send an email that results in a bounce or
complaint event.
When you enable feedback forwarding, Amazon Pinpoint sends you email notifications when bounce
or complaint events occur. Amazon Pinpoint sends this notification to the address that you
specified in the Return-Path header of the original email.
When you disable feedback forwarding, Amazon Pinpoint sends notifications through other
mechanisms, such as by notifying an Amazon SNS topic. You're required to have a method of
tracking bounces and complaints. If you haven't set up another mechanism for receiving
bounce or complaint notifications, Amazon Pinpoint sends an email notification when these events
occur (even if this setting is disabled).
example
Use a bare-bones client and the command you need to make an API call.
Used to enable or disable feedback forwarding for an identity. This setting determines what happens when an identity is used to send an email that results in a bounce or complaint event.
When you enable feedback forwarding, Amazon Pinpoint sends you email notifications when bounce or complaint events occur. Amazon Pinpoint sends this notification to the address that you specified in the Return-Path header of the original email.
When you disable feedback forwarding, Amazon Pinpoint sends notifications through other mechanisms, such as by notifying an Amazon SNS topic. You're required to have a method of tracking bounces and complaints. If you haven't set up another mechanism for receiving bounce or complaint notifications, Amazon Pinpoint sends an email notification when these events occur (even if this setting is disabled).
Use a bare-bones client and the command you need to make an API call.
import { PinpointEmailClient, PutEmailIdentityFeedbackAttributesCommand } from "@aws-sdk/client-pinpoint-email"; // ES Modules import // const { PinpointEmailClient, PutEmailIdentityFeedbackAttributesCommand } = require("@aws-sdk/client-pinpoint-email"); // CommonJS import const client = new PinpointEmailClient(config); const command = new PutEmailIdentityFeedbackAttributesCommand(input); const response = await client.send(command);
PutEmailIdentityFeedbackAttributesCommandInput for command's
input
shape.PutEmailIdentityFeedbackAttributesCommandOutput for command's
response
shape.config for PinpointEmailClient's
config
shape.