This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
smtp-tls /
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Thu Sep 17 19:09:57 -0700 2009 | |
| |
README.rdoc | Thu Sep 17 19:09:57 -0700 2009 | |
| |
Rakefile | Thu Sep 17 19:09:57 -0700 2009 | |
| |
VERSION.yml | Thu Apr 02 10:15:40 -0700 2009 | |
| |
lib/ | Thu Apr 02 10:15:40 -0700 2009 | |
| |
smtp-tls.gemspec | Thu Apr 02 11:26:27 -0700 2009 |
README.rdoc
SMTP-TLS
I didn’t author this, so I can’t make any claims about it’s worth, licensing, or anything else. It’s just a gem package for some code that’s been floating around for a few years. Check google, or the following for more information:
Ruby on Rails
If you’re using Ruby on Rails >= 2.2 and Ruby v1.8.7 or greater, you don't need this. Just set enable_starttls_auto in your ActionMailer config:
ActionMailer::Base.smtp_settings = {
:enable_starttls_auto => true,
:address => 'smtp.gmail.com',
:port => 587,
:domain => 'example.com',
:authentication => :plain,
:user_name => 'user',
:password => 'secret'
}
Dependencies
- Net::SMTP
- OpenSSL
Usage
require 'smtp-tls'
Then get back to business as usual.







