The error that I get is:
Net::SMTPFatalError: 550 5.7.1 Unable to relay for [email protected]
I am using mail-2.3.0 With Ruby 1.9 on windows XP.
The exact code I used is:
require 'rubygems'
require 'mail'
Mail.deliver do
from '[email protected]'
to '[email protected]'
subject 'Here is the image you wanted'
end
I don't understand what I am missing. Thanks for your help.