Reputation: 1845
I am using SES to create a newsletter service. I have a frontend website, on which user can sign-up by providing their email id. I capture that email id in database and use that to send emails periodically using SES.
My question is do I need to send a verify customer email id before I start sending them newsletter? Is it a restriction of sandbox environment and will it be resolved once I get production access? I have tried with different new email ids but every time it fails saying email id is not verified.
According to Creating and verifying identities in Amazon SES - Amazon Simple Email Service, it mentions to use a verified domain, so I have tried with verified domain as well (although still in sandbox environment).
Upvotes: 0
Views: 1877
Reputation: 25989
Is it a restriction of sandbox environment and will it be resolved once I get production access?
That's correct. As mentioned in the documentation:
If your account is still in the Amazon SES sandbox, you also need to verify any email addresses which you plan on sending email to
therefore when you are not in the sandbox environment, this limitation does not apply.
Upvotes: 2