stempler irit | :םש |
---|---|
08:39 02/05/01 | :ךיראת |
sendmail | :אשונ |
hello,
to send mail in NT exchange system, how do I do it?
if this is the unix way:
sub send_mail
{
$name=param('name');
$sendmail = "/usr/sbin/sendmail -t -n -oi";
open (MAIL, "|$sendmail")||die
("Content-type: text/plain\n\nCould not open sendmail\n");
$to=$sendto;
$from=param('login');
$subject="Web Form Result\n";
print MAIL <<OF;
Sender: $from
From:$from
To: $to
Subject: $subject
name: $name
EOF
close MAIL;
}
what is the exact equivalen for NT exchange?
thanks