hi ,
I had this program ,
#!/usr/bin/perl
use Mail::Sendmail;
%mail = ( To => '
deepak...@yahoo.co.in',
From => '
m...@here.com',
Message => "This is a very short message"
);
sendmail(%mail) or die $Mail::Sendmail::error;
print "OK. Log says:\n", $Mail::Sendmail::log;
And when i executed it it shows the following error message :
localhost not found
connect to localhost failed () no (more) retries!
please help me with this problem.