Skip to content

Instantly share code, notes, and snippets.

@ozgun
Created October 21, 2013 19:09
Show Gist options
  • Select an option

  • Save ozgun/7089225 to your computer and use it in GitHub Desktop.

Select an option

Save ozgun/7089225 to your computer and use it in GitHub Desktop.
ActionMailer settings
ActionMailer::Base.delivery_method = :smtp
ActionMailer::Base.smtp_settings = {
:enable_starttls_auto => true,
:port => 587,
:address => "mx.yandex.net",
:user_name => "test@example.com",
:password => "12345",
:domain => "example.com",
:authentication => :plain
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment