# File app/mailsender/mail_sender.rb, line 18
        def initialize
                @head = ""
                @content = ""
                
                # SMTP接続用の設定
                @port = 25
                @helo_domain = 'localhost.localdomain'
                @account = nil
                @password = nil
                @authtype = nil
        end