a better way to send mail is to use sendmail directly
if you are on linux you can dosudo apt-get xmail
and then use the following perl script
use Mail::Mailer;
$mailer=Mail::Mailer->new("sendmail");
$mailer->open ({ From=> <from address here>,
To=> <to address here>,
Subject=> <subject here>,
}) or die "cant open mailer\n";
$body=<>;
print $mailer $body;
$mailer->close();
the "sendmail" is to be replaced with the mail program like xmail (i use xmail)
--------------------------------------------------------
i'am worst at what do best and for this gift i fell blessed... i found it hard it's hard to find well whatever NEVERMIND
|