Skip to content

Instantly share code, notes, and snippets.

@nvh0412
Created December 13, 2015 18:08
Show Gist options
  • Save nvh0412/53e186c04c8f09057414 to your computer and use it in GitHub Desktop.
Save nvh0412/53e186c04c8f09057414 to your computer and use it in GitHub Desktop.
Mail configuration
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