# File src/Email.rb, line 144
                def send
                        generate_body unless body_generated?
                        if smtp_connection
                                smtp_connection.send_message(mail_obj.encoded, from, recipients)
                        else
                                args = []
                                args.push smtp_account if smtp_account
                                args.push smtp_password if smtp_password
                                args.push authentication if authentication
                                Net::SMTP.start(smtp_server, smtp_port, helo_domain, *args) {|smtp|
                                        smtp.send_message(mail_obj.encoded, from, recipients)
                                }
                        end
                end