I`m using Tiny-MCE as a composer in zimbra web client, when i send an email , tinymce change all HTML tags to HTML entity , something like this :
<p style="text-align: center;">&nbsp;</p><br>
<p style="text-align: center;">&nbsp;</p><br>
<p style="text-align: center;">&nbsp;</p><br>
<p style="text-align: center;"><span style="font-size: xx-large; color: #ffff00; background-color: #000080;">salam in yek test ast</span></p><br>
<p>&nbsp;</p><br>
<p>&nbsp;</p><br>
<p>&nbsp;</p>
but the original string is :
<p style="text-align: center;"> </p>
<p style="text-align: center;"> </p>
<p style="text-align: center;"> </p>
<p style="text-align: center;"><span style="font-size: xx-large; color: #ffff00; background-color: #000080;">salam in yek test ast</span></p>
<p> </p>
<p> </p>
<p> </p>
is there any solution ?
You could run a function over the content to reformat the htmlentities back to regular characters.