Skip to content

Instantly share code, notes, and snippets.

View lzell's full-sized avatar

Lou Zell lzell

View GitHub Profile
@lzell
lzell / gist:143380
Created July 9, 2009 02:35
Send mail from your gmail account
require 'net/smtp'
require 'rubygems'
require 'tlsmail'
Net::SMTP.enable_tls(OpenSSL::SSL::VERIFY_NONE)
class GMailer
SMTP_ADDR = 'smtp.gmail.com'
def initialize(opts = {})
unless opts[:login] && opts[:password]