Go to config/initializers/setup_mail.rb
Check if the configuration matches the configuration written in the development.rb file. Both files should look like this:
config.action_mailer.smtp_settings = { :address =>" smtp.gmabirdvision17@gmail.comil.com ", :port => 587, :domain => "gmail.com", :user_name => " mygmail@gmail.com ", :password => "**********", :authentication => 'plain', :enable_starttls_auto => true, :openssl_verify_mode => 'none' }
This will definitely solve your problem.
user5287360
source share