Created
December 13, 2015 18:08
-
-
Save nvh0412/53e186c04c8f09057414 to your computer and use it in GitHub Desktop.
Mail configuration
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
config.action_mailer.smtp_settings = { | |
address: 'smtp.gmail.com', | |
port: 587, | |
domain: ENV['MAIL_DOMAIN'], | |
user_name: ENV['MAIL_ID'], | |
password: ENV['MAIL_PASSWORD'], | |
authentication: 'plain', | |
enable_starttls_auto: true } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment