I am still very new to php and I am trying to get my head around the mail
function.
If I set the content type to html (Content-type: text/html;
charset=iso-8859-1) I can do basic html.
However if I have any html that requires quotes (eg hrefs) the function will
escape the quotes resulting in html with backslashes through it.
eg. I submit the following using POST from a form to the message variable:
<html><head<title>page title</title>
</head><body>
<img src="http://somwhere.com/images/something.jpg" border="0" width="300" height="200" alt="">
</body></html>
I get this:
<html><head<title>page title</title>
</head><body>
<img src="http://somwhere.com/images/something.jpg" border="0"
width="300" height="200" alt="">
</body></html>
Any ideas?
Thanks
Neil