Skip to content

Instantly share code, notes, and snippets.

@mrmans0n
Created July 31, 2012 12:24
Show Gist options
  • Save mrmans0n/3216683 to your computer and use it in GitHub Desktop.
Save mrmans0n/3216683 to your computer and use it in GitHub Desktop.
My ActionMailer configuration
# ActionMailer data
config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = {
:address => "smtp.gmail.com",
:port => 587,
:domain => "mydomain.com",
:user_name => "my.sender.address@gmail.com",
:password => "my_google_autogenerated_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