I have an email php form that get the message from a input nicedit text.
in my php headers code I'm using:
$headers .= "Content-Type: text/html; charset=ISO-8859-1\r\n";
everything works fine except if I want to add a link or a picture.
Nicedit translates my message adding backslash() before and after the tags:
test a <a =\"http://example.com\" title=\"example\" target=\"_blank\">link</a>
Any Idea why is this happening?