I am hoping that there is a "magic switch" that I am missing. Any ideas?
The e-mailing part of the script is given below:
($mailprog is /usr/lib/sendmail)
open (MAIL, "|$mailprog -oi -t $recipient") || die "Can't open
$mailprog!\n";
print MAIL "MIME-Version: 1.0\n";
print MAIL "Content-type: text/plain; charset=iso-8859-1\n";
print MAIL "Content-transfer-encoding: 8bit\n";
print MAIL "Reply-to: $sender \n";
print MAIL "Subject: The Subject\n\n";
print MAIL "$email_body\n";
print MAIL "\n----------------------------------------------------------
--\n\n";
print MAIL "Server protocol: $ENV{'SERVER_PROTOCOL'}\n";
print MAIL "Remote host: $ENV{REMOTE_HOST}\n";
print MAIL "Remote IP address: $ENV{'REMOTE_ADDR'}\n";
print MAIL "Browser: $ENV{'HTTP_USER_AGENT'}\n";
close (MAIL);
--
Ian Michael