Skip to content

Instantly share code, notes, and snippets.

@arjan0307
Last active October 9, 2015 10:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arjan0307/3489179 to your computer and use it in GitHub Desktop.
Save arjan0307/3489179 to your computer and use it in GitHub Desktop.
Gmail email rails
config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = {
:address => "smtp.gmail.com",
:port => 587,
:domain => 'gmail.com',
:user_name => 'ommitted!',
:password => 'ommitted!',
:authentication => 'plain',
:enable_starttls_auto => true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment