I am using ob_start() to redirect the html/php output of a file, to create an html email. here is an example
ob_start()
html....
<? =string ?>
$message = ob_get_contents();
ob_end_clean();
when i mail the contents if text was inserted via the php string then all the quotes have \" or \' in the email any ideas on how to get rid of the backslash.
thanks for all the help
Jake