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.
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