From: Shekar Ls Date: 2011-07-20T07:04:13+09:00 Subject: Send Fax from a Linux Box Hi All, I am looking for a solution to send multiple emails to a fax address from linux box. Right now my code looks like below on a windows box: require 'win32ole' for i in 1..25 do outlook = WIN32OLE.new('Outlook.Application') message = outlook.CreateItem(0) message.Subject = 'bla Bla Bla' message.Body = 'test123' message.To = '[RFAX:ABCDE@/DN=22323232]' message.Send end How do i implement the same stuff on a linux Box, so that i can run it with on a command line. Cheers -- Posted via http://www.ruby-forum.com/.