ACJavascript
05-19-2003, 06:39 PM
Hello all!
Okay heres my question.
Usualy in unix (linux) servers they use sendmail such as this:
/usr/sbin/sendmail
now that doesn't work on windows servers.. and the reason is they use smtp right???
second
If you use the unix type as below how could you change it to accomodate windows.
$mailprog="/usr/sbin/sendmail";
open(MAIL,"|$mailprog -t") || print "IT WONT WORK!";
print MAIL "To: ... ";
print MAIL "Subject:....";
ect.....
???? Any help is most apprecaited.
Thanks!
Okay heres my question.
Usualy in unix (linux) servers they use sendmail such as this:
/usr/sbin/sendmail
now that doesn't work on windows servers.. and the reason is they use smtp right???
second
If you use the unix type as below how could you change it to accomodate windows.
$mailprog="/usr/sbin/sendmail";
open(MAIL,"|$mailprog -t") || print "IT WONT WORK!";
print MAIL "To: ... ";
print MAIL "Subject:....";
ect.....
???? Any help is most apprecaited.
Thanks!