3

We're thinking of moving to Amazon's SES for sending bulk mail. It appears that we have a unique API call for each email we want to send. So if there are 20k emails to send, we make 20k API calls. My question is, do we need to verify these email addresses before we send to them? We have an existing database of users and I'd rather the transition to SES to be transparent to them.

I noticed that SES has an API method for verifying emails. If we aren't required to verify, why would someone would use this method?

Community
  • 1
  • 1
weotch
  • 5,788
  • 6
  • 35
  • 42

2 Answers2

6

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

Important: If you have not yet requested production access to Amazon SES, then you will only be able to send email to and from verified email addresses.

So, that method you asked about is used for building a list of addresses that can be e-mailed to, if you haven't requested production access yet. Since you seem to already have done that, it's not useful to you.

Piskvor left the building
  • 91,498
  • 46
  • 177
  • 222
4

Note - once you have production access, you will still need to verify email addresses you are sending FROM, but not to.

Josh
  • 409
  • 1
  • 4
  • 6