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
gefragt vor 2 Monaten149 Aufrufe
1 Antwort
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
beantwortet vor einem Monat

Du bist nicht angemeldet. Anmelden um eine Antwort zu veröffentlichen.

Eine gute Antwort beantwortet die Frage klar, gibt konstruktives Feedback und fördert die berufliche Weiterentwicklung des Fragenstellers.

Richtlinien für die Beantwortung von Fragen