public
Description: Use Gmail SMTP server to send emails in Rails ActionMailer
Homepage: http://www.caritos.com
Clone URL: git://github.com/caritos/action_mailer_tls.git
name age message
file .DS_Store Sat Mar 01 13:21:41 -0800 2008 first commit [caritos]
file MIT-LICENSE Sat Mar 01 13:21:41 -0800 2008 first commit [caritos]
file README Sun Mar 02 08:59:42 -0800 2008 Added instructions in the readme file to descri... [caritos]
file init.rb Sat Mar 01 13:21:41 -0800 2008 first commit [caritos]
directory lib/ Sat Mar 01 13:21:41 -0800 2008 first commit [caritos]
README
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