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 個月前檢視次數 150 次
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 個月前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南