I'm passing an html email from a form
like this:
$message = $message_html;
Advertising
where message_html is the text area name.
mail($to, $subject, $message, $headers);
I end up with, for example:
<div align=center\">
<table width=550\" border=0\" cellspacing=0\" cellpadding=0\">
<tr>
<td bgcolor=#01405A\"><img
src=http://www.gfx-design.com/vantico/spacer.gif\" width=1\" height=10\"
alt=\" border=0\"></td>
</tr>
it's trying to escape the quotes and at times completely
cutting them out.
The same snippet prior to being sent:
<div align="center">
<table width="550" border="0" cellspacing="0" cellpadding="0">
<tr>
<td bgcolor="#01405A"><img
src="http://www.gfx-design.com/vantico/spacer.gif" width="1" height="10"
alt="" border="0"></td>
</tr>
Why is this happening? How can I stop it?
-brian
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]