From: Vetrivel Vetrivel Date: 2009-03-23T13:24:18+09:00 Subject: send email in ruby How to attach the filename in ruby. I have attach 1.txt as a file name . The 1.txt file has the following contents. This is a test message. But it doesn't work for me. require 'net/smtp' msgstr = < attachment: "1.txt" END_OF_MESSAGE smtp = Net::SMTP.start("IpAdd" , portno) smtp.send_message msgstr, 'fromAddress, 'toAddress' -- Posted via http://www.ruby-forum.com/.