Reputation: 666
When sending email with Amazon SES, there are two main options. SMTP interface and SES API.
I have a set of email messages needed to be sent to various recipients. I need to iterate through this set of messages and send via Amazon SES. My question is, will the process be synchronous (current email has to wait until the last one is completed) or not.
I'm expecting a asynchronous method and I wouldn't mind to use either SMTP interface or SES API.
I went through the documentation and I couldn't find an answer to this.
Upvotes: 1
Views: 3943
Reputation: 1403
Sending email through AWS SES is asynchronous, which means emails will deliver asynchronously by SES, but you have to wait until the the email request has been queued to know whether the request to send email has been completed. If you want that to be asynchronous, you can put it in background tasks.
Upvotes: 1