Skip to content

Instantly share code, notes, and snippets.

@mileszs
Created March 30, 2009 00:56
Show Gist options
  • Select an option

  • Save mileszs/87588 to your computer and use it in GitHub Desktop.

Select an option

Save mileszs/87588 to your computer and use it in GitHub Desktop.
ActionMailer::Base.delivery_method = :smtp
ActionMailer::Base.smtp_settings = {
:address => "smtp.gmail.com",
:port => 587,
:authentication => :plain,
:user_name => "[email protected]",
:password => "somepass"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment