I am getting the following text info on top of my email message. Can someone tell me how to remove this?
"Message-Id: <20070824172749.C6883C078092@www.www'>www.www>'>www.www'>www.www> Date: Fri, 24 Aug 2007 11:27:49 -0600 (MDT) From: www@www.www'>www.www (WWW daemon apache) Return-Path: wwwrun@www.www'>www.www X-OriginalArrivalTime: 24 Aug 2007 17:26:53.0322 (UTC) FILETIME=[F66B8EA0:01C7E673] "
events code I am using
$to = 'www@www.www'>www.www' . ', '; // note the comma
$message="";
$subject="Hello";
$message.="<html>";
$message.= "<table width=100% border=0 cellpadding=0 cellspacing=0>";
$message.= "<tr>";
$message.= "<td height=43 background=\"images/top.gif\">";
$message.= "<img src=\"images/top.gif\" height=43>";
$message.= "</td>";
$message.= "</tr>";
$message.= "</html>";
$headers = 'MIME-Version: 1.0' . "\r";
$headers.= "From: www@www.www'>www.www\n";
$headers.= 'Content-type: text/html; charset=iso-8859-1' . "\r";
mail($to, $subject, $message, $headers);
Thanks in Advance.
Gabe