# File lib/em/protocols/smtpclient.rb, line 128
128:       def self.send args={}
129:         args[:port] ||= 25
130:         args[:body] ||= ""
131: 
132: ??
133:         EventMachine.connect( args[:host], args[:port], self) {|c|
134:           # According to the EM docs, we will get here AFTER post_init is called.
135:           c.args = args
136:           c.set_comm_inactivity_timeout 60
137:         }
138:       end