olkeene / action_mailer_tls

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ActionMailerTls
===============

Use GMail SMTP server to send emails in Rails ActionMailer

Example
=======

Place code snippet in config/environment.rb

ActionMailer::Base.server_settings = {
  :address => "smtp.gmail.com",
  :port => 587,
  :domain => "mycompany.com",
  :authentication => :plain,
  :user_name => "username",
  :password => "password"
}

Copyright (c) 2008 Eladio Caritos, released under the MIT license

About

License:MIT License


Languages

Language:Ruby 100.0%