PachinSV
PachinSV

Reputation: 3780

Send email to multiple recipients in one call using AWS SES (PHP SDK)

Is there a way to send an email message to multiple recipients just making one call to AWS? I want the recipient to only see their email address as the only address in the to field.

There is no mention of anything like that in the documentation. The other alternative I've think of is using an almighty loop.The problem with this is that if I have 100 recpients I need to make 100 calls to the API.

Upvotes: 3

Views: 2296

Answers (1)

Gambric
Gambric

Reputation: 199

I solved with the SendBulkTemplatedEmail API operation.

For more information take a look here: https://aws.amazon.com/it/blogs/messaging-and-targeting/introducing-email-templates-and-bulk-sending/

Upvotes: 2

Related Questions