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
asked 23 days ago97 views
No Answers

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions