jerrykarn
05-28-2003, 06:16 AM
I am uploading a pre-built website, which has a form and a perl script to email the fields to the webmaster via sendmail.
here's a snippet:
open (MAIL,"|/usr/sbin/sendmail -t -n -oi") ||
die "there was a problem with the call to sendmail";
print MAIL "To: $tomail\n";
print MAIL "From: $in{'name'} <$in{'email'}>\n";
print MAIL "Reply-To: $in{'Email'}\n";
.....etc.
So, I know the Bill Gates world doesn't have sendmail, so how do I send my forms' data?
If the answer is long and painful, I welcome links to good information.
Many thanks! -Jerry
here's a snippet:
open (MAIL,"|/usr/sbin/sendmail -t -n -oi") ||
die "there was a problem with the call to sendmail";
print MAIL "To: $tomail\n";
print MAIL "From: $in{'name'} <$in{'email'}>\n";
print MAIL "Reply-To: $in{'Email'}\n";
.....etc.
So, I know the Bill Gates world doesn't have sendmail, so how do I send my forms' data?
If the answer is long and painful, I welcome links to good information.
Many thanks! -Jerry