-
Notifications
You must be signed in to change notification settings - Fork 100
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to use the library to send bulk emails? #87
Comments
You'll need to send every single personalised email with this library |
Thanks for your prompt response. Is there any custom code available that can be added to the library to use it for bulk sending? |
The library's main purpose is to send emails and in the latest versions the bulk sending mode is enabled by default. What more do you need? |
Currently, I need to send personalized emails in batches i.e. if there are 5000 emails that have to be sent, then break them into 5 batches each containing 1000 emails. Prepare some personalization data(name, age, etc) for each email recipient in a batch and then send all emails in the batch along with personalization data of recipients to Amazon SES API in one API request only. This would repeat for each batch then until all batches are processed. Will that be possible with the library? |
You're looking in the wrong place. As far as I know this is not possible with Amazon SES. |
@daniel-zahariev I think @DevKishan is looking for this API sendBulkTemplatedEmail |
I need to send bulk emails to multiple recipients using Amazon SES. Also, each email should be personalized according to the recipient's data.
e.g. In the email content and the subject, {{Name}} placeholder tag should be replaced with provided recipient data for each recipient.
Is it possible with this library?
The text was updated successfully, but these errors were encountered: