How to send emails using Amazon SAS without checking email addresses from "from"

Can we send emails from the Rails application using Amazon SES SMAS, where the sender email id is not verified. ?

I know that Amazon SES can send emails to unverified addresses. Is there a way to send emails from an unverified random email address.

I want to know if there is a way to get rid of it, because my application sends emails using users email addresses as the sender email address.

+7
source share
2 answers

I have one solution for this problem. We can add a custom email address to the email header along with a verified email address as follows

" arbitrarymail@example.com < verifiedemail@example.com >" 

Because of this, the recipient may get some idea about the sender of the letter.

+10
source

Unfortunately, it is not possible to send emails from any arbitrary email address using Amazon ASES without verification.

However, you can check the entire domain so that emails can be sent on behalf of all senders from the verified domain. If all sender addresses are sent from the same domain, this solution will work, otherwise you may need to use the SES alternative.

Announcement here: http://aws.amazon.com/about-aws/whats-new/2012/05/15/amazon-simple-email-service-announces-domain-verification/

+5
source

All Articles