Guest_imported
New member
- Jan 1, 1970
- 0
Ok, can some one please give me a pointer as to why this code isn't working? As far as I can see it should, but it doesn't 
Thanks
Andy

Code:
open(MAIL, "|$sendmail -t") || die &error;
print MAIL "To: $email \n";
print MAIL "From: $email \n";
print MAIL "Reply-to: $email \n";
print MAIL "Subject: Your Sites Variables \n\n";
print MAIL "All of the major variables that you will find with your hosting / site are listed below. The IP address that sent it was $ip....\n\n";
print MAIL "\n\n";
close(MAIL);
Thanks
Andy