I am trying to send an EMBED and OBJECT tag inside an HTML email using the mail() call.
 My HEADER Content type is...

$headers = "MIME-Version: 1.0\r\n";
$headers.= "Content-type: text/html; charset=iso-8859-1\r\n";
$headers.= "From: ".$myname."<".$myemail.">\r\n";
$headers.= "To: ".$contactname."<".$contactemail.">\r\n";
$headers.= "Reply-To: ".$myname."<$myreplyemail>\r\n";
$headers.= "X-Priority: 1\r\n";
$headers.= "X-MSMail-Priority: High\r\n";
$headers.= "X-Mailer: Just My Server";

mail($contactemail, $subject, $message, $headers);

Each Time I add the EMBED or OBJECT tag, the mail() call errors out.
What type of content-type do I need to use to be able to send EMBED tags through an 
HTML email in PHP?

Please help, I have had no luck with the manual or my archives.

Thanks folks.
- NorthBayShane

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

Reply via email to