Skip to content

Instantly share code, notes, and snippets.

View wishdev's full-sized avatar

John W Higgins wishdev

  • Battle Ground, WA
View GitHub Profile
@wishdev
wishdev / gist:146751
Created July 14, 2009 06:17
Ruby and GMail
# http://www.jamesbritt.com/2007/12/18/sending-mail-through-gmail-with-ruby-s-net-smtp
# http://d.hatena.ne.jp/zorio/20060416
require "openssl"
require "net/smtp"
Net::SMTP.class_eval do
private
def do_start(helodomain, user, secret, authtype)
raise IOError, 'SMTP session already started' if @started