From: Dhiraj Girdhar Date: 2007-07-09T18:14:53+09:00 Subject: Problem with SMTP mail program Hi, I took following very simple mail program from one of Ruby site, it is working fine on my system, but not on other system. The only difference which i Observed is that on other machine Microsoft Outlook is not installed. Please tell me the reason? msgstr = < To: Dhiraj Girdhar Subject: test message Date: Sat, 14 Jun 2007 16:26:43 +0900 Message-Id: <1dhiraj@samplemail.com> This is a test message. END_OF_MESSAGE require 'net/smtp' Net::SMTP.start('samplemailexchangeserver.arcot.com', 25) do |smtp| smtp.send_message msgstr, 'dhiraj@samplemail.com', 'dhiraj@samplemail.com' end Regards: Dhiraj -- Posted via http://www.ruby-forum.com/.