Custom headers per recipient using SES API SendBulkEmail

1

Are there any plans to support custom headers per recipient using the send_bulk_email API? The Yahoo/Gmail requirements regarding bulk senders are already in effect, and using the send_email API is impractical when you need to send hundreds of thousands of emails.

I would like to define a Link-Unsubscribe header with a different URL for each recipient. I was expecting to have something similar as "ReplacementTags" and "ReplacementTemplateData" for the headers.

DefaultContent={
        'Template': {
            'Headers': [
                {
                    'Name': 'string',
                    'Value': 'string'
                },
            ]
        }
    },
BulkEmailEntries=[
        {
            'ReplacementTags': [
                {
                    'Name': 'string',
                    'Value': 'string'
                },
            ],
            'ReplacementEmailContent': {
                'ReplacementTemplate': {
                    'ReplacementTemplateData': 'string',
                    'ReplacementTemplateHeaders': [{...}]
                }
            }
        },
    ],
  • Same question here… SendBulkEmail should be able to handle variable header values (for each recipient). Otherwise, it won’t be possible to define custom unsubscribe links, that are essential to identify the user that needs to be unsubscribed (using an UUID, for example).

  • Yes this is strong requirement for us also. Having to look at other email providers

gxavier
質問済み 2ヶ月前149ビュー
1回答
0

The SES team recently released support for specifying custom headers for each destination in SendBulkEmail calls: https://docs.aws.amazon.com/ses/latest/APIReference-V2/API_BulkEmailEntry.html#SES-Type-BulkEmailEntry-ReplacementHeaders

AWS
回答済み 1ヶ月前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ