# File app/bin/send_mail.rb, line 31
        def process
                @sender.from = @parser.from
                @sender.to_list = @parser.to_list
                @sender.subject = @parser.subject
                @sender.smtp = @parser.smtp
                @sender.add_text(@parser.text)
                unless @parser.attachment_list.nil?
                        @parser.attachment_list.each { |path|
                                @sender.add_attachment(path)
                        }
                end
                @sender.account = @parser.account
                @sender.password = @parser.password
                @sender.send
        end