I am referring to .net SDK here but I believe class level concepts are all same.
This is for sending bulk emails using templates (https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-personalized-email-api.html)
SendBulkTemplatedEmailResponse response = client.SendBulkTemplatedEmailAsync(sendBulkTemplatedEmailRequest).Result
SendBulkTemplatedEmailRequest
has more than one email addresses and SendBulkTemplatedEmailResponse
is returned with individual status for each email as List<BulkEmailDestinationStatus>
(https://docs.aws.amazon.com/sdkfornet/v3/apidocs/items/SimpleEmail/TBulkEmailDestinationStatus.html).
Each BulkEmailDestinationStatus
has MessageId
and Status
(some predefined constants). But not having the email-address for which the status is returned (obviously there are more than one recipients so there are individual status for each recipient.)
With that said, how to figure out mapping from email-address to MessageId or vice-versa?
I am getting confused about what is the use of messageId in BulkEmailDestinationStatus where there is not any associated recipient email-address. Am I missing something very basic here?
While I didn't find any resources on this, I'll just leave what I gathered testing this feature, for anyone else that may find this question.
The order of the emails sent (ie. the order of the emails in the Destinations property) is the order of the returned messageIds.
So, using the docs json sample:
The object sent would be a
(SendBulkTemplatedEmailRequest) request
with the following list:And the
(SendBulkTemplatedEmailResponse) response
would have this list:Where:
"0000000000000000-11111111-2222-3333-4444-111111111111-000000"
refers to the email sent to[email protected]
;"0000000000000000-11111111-2222-3333-4444-222222222222-000000"
refers to to the email sent to"[email protected]"
;and so on.