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 个月前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则