Hello everyone,

I m using php mail function it dose everyting fine besides it prints
message twise in the email body can someone please have a look
what i m doing wrong the code is as follows :

$to = "$email";
$subject = "someting goes here \n\n";
$headers = "From: [EMAIL PROTECTED]" .
"X-Mailer: Mailserver at somewhere.com\n" .
"Date: $date\n" .
"MIME-Version: 1.0\n" .
"Content-Type: text/plain; charset=ISO-8859-1\n" ;

message <<<EOF
...................
.......................
.........................
.....
...
EOF;

 if (mail($to,$subject,$message,$headers)){

   $say = "<p />E Mail sent successfully to $email. <br>";
  }
else{

$say = "\n\n<p />Ohoho! Sending failed Please inform to Webmaster. <br>";

}

I shall highly appreciate any help

Thanks
Tariq

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to