Skip to content

Instantly share code, notes, and snippets.

@BitOfUniverse
Created July 25, 2013 12:50
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 BitOfUniverse/6079302 to your computer and use it in GitHub Desktop.
Save BitOfUniverse/6079302 to your computer and use it in GitHub Desktop.
Configure rails mailer
config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = {
:address => 'smtp.gmail.com',
:port => 587,
:domain => 'gmail.com',
:user_name => '',
: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