Jul
26
|
perl -MCPAN -e “install Mail::Sendmail”
USING
use Mail::Sendmail;
%mail = ( To => ‘todestination@domain.com’,
From => ‘fromme@domain.com’,
Message => “This is a test message”
);
sendmail(%mail) or die $Mail::Sendmail::error;
print “OK. Log says:\n”, $Mail::Sendmail::log;
Recent Comments