· 7 years ago · Dec 11, 2018, 01:46 PM
1config.action_mailer.delivery_method = :smtp
2 config.action_mailer.smtp_settings = {
3 :address => "smtp.gmail.com",
4 :port => 587,
5 :domain => 'gmail.com',
6 :user_name => 'ommitted',
7 :password => 'ommitted',
8 :authentication => 'plain',
9 :enable_starttls_auto => true
10 }