AWS SES for Email: Email Verification Required?

We are going to switch to Amazon SES to send mass mail. It appears that we have a unique API call for each email we send. Therefore, if there are 20k emails to send, we make 20k API calls. My question is: do we need to check these email addresses before sending them? We have an existing user database, and I would prefer the transition to SES to be transparent to them.

I noticed that SES has a method

+3
source share
2 answers

http://docs.amazonwebservices.com/ses/latest/APIReference/index.html?API_SendRawEmail.html says:

Important: If you have not requested access to your Amazon SES product, you can only send emails from verified email addresses.

So, this method that you asked for is used to create a list of addresses to which an email can be sent if you have not requested access to the product. Since you seem to have already done this, it is not useful to you.

+6
source

Note. Once you have production access, you will still need to check the email addresses that you send FROM, but not.

+4
source

Source: https://habr.com/ru/post/1791016/


All Articles