Net::SMTPFatalError 554 Message rejected: Email address is not verified

9.8k Views Asked by At

I am getting this error while I am trying to send password reset instructions to an email id.

 Net::SMTPFatalError (554 Message rejected: Email address is not verified.

I have no idea how to fix that issue. I have written smtp settings in config/development.eb as follows:

ActionMailer::Base.smtp_settings = {
:address              => "email-smtp.us-east-1.amazonaws.com",
:port                 => ...,
:domain               => "...",
:user_name            => '...',
:password             => '...',
:authentication       => 'plain',
:enable_starttls_auto => true,
:content_type         => 'text/html'

}

I am asking if anyone has any idea about how to fix that. Thanks in advance.

3

There are 3 best solutions below

1
On

I think you can only send emails to verified emails using SES if you're in sandbox mode, you have to request production access from AWS to send out to unverified emails, see Amazon's documentation about it for more information

If you want to change out of sandbox mode, go to your SES Dashboard and request production access

If you just want to add more verified emails and stay in sandbox mode, go to Verified Sender's Email and add in the new email addresses.

Hope this helps

0
On

Another tip that might help, if you are sending from 'alias <[email protected]>', make sure to add it to the SES dashboard exactly as it is. Adding '[email protected]' only might not work.

0
On

You can also come across this issue if you are trying to send an email and specify an email that you don't own.

For example if you are working with a 'Contact Us' form where the user fills in their email, it might be tempting to say from: user@not_our_domain.com but you should avoid this. Rather set the email headers as something like from: noreply@domain_we_own.com, reply_to: 'user@not_our_domain.com'