Hello,
I am using Linux RedHat 7 with sendmail. When I send out mail using a cgi script with the following code(below), I get a number 1 in the font of all my mail text? For example my emil would look like:
1Your feedback hads been recieved.
any ideas?
open(MAIL, "|$mailprog $email"
|| &HTMLdie("Couldn't send the mail (couldn't run $mailprog)."
;
$ENV{'HTTP_REFERER'} || ($ENV{'HTTP_REFERER'}= "www.SecureWorkGroups.Com") ;
print MAIL "Subject: Feedback You have submitted to SecureWorkGroups\n\n",
print MAIL "From: $sender\n";
print MAIL "Your feedback has been recieved.\n\n";
close(MAIL) ;
I am using Linux RedHat 7 with sendmail. When I send out mail using a cgi script with the following code(below), I get a number 1 in the font of all my mail text? For example my emil would look like:
1Your feedback hads been recieved.
any ideas?
open(MAIL, "|$mailprog $email"
|| &HTMLdie("Couldn't send the mail (couldn't run $mailprog)."
$ENV{'HTTP_REFERER'} || ($ENV{'HTTP_REFERER'}= "www.SecureWorkGroups.Com") ;
print MAIL "Subject: Feedback You have submitted to SecureWorkGroups\n\n",
print MAIL "From: $sender\n";
print MAIL "Your feedback has been recieved.\n\n";
close(MAIL) ;