Reputation: 8855
Our customer need to validate their email to uses amazon SES. The problem is that the email is a bulk of english text and not very user friendly.
The docs does not state a way to customize the confirmation email sent from amazon. Is that possible ?
Thanks
Upvotes: 2
Views: 1460
Reputation: 4564
Maybe it wasn't available in the past, but amazon let's you change the e-mail template used when sending verification links to customers by providing a template. See documentation here.
You can have up to 50 custom templates. Then, using the SDK of your choice, you would call the SendCustomVerificationEmail
. See documentation here.
Upvotes: 1
Reputation: 46849
Verifying the email address is a one-time thing, so if they can't find someone to read it/translate it for them, perhaps verifying the entire domain might be a better option?
http://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-domains.html
This does require access to their dns settings however, i.e. in route 53, but is quite easy to do for them if you have such access.
Upvotes: 1