RailsCasts Pro episodes are now free!

Learn more or hide this

n0rix9's Profile

GitHub User: n0rix9

Comments by

Avatar
ruby
ActionMailer::Base.smtp_settings = {
  :address              => "smtp.gmail.com",
  :port                 => 587,
  :domain               => "mail.gmail.com",
  :user_name            => "yourmail@gmail.com",
  :password             => "secret",
  :authentication       => "plain",
  :enable_starttls_auto => true
}