I need to pass a \[code\]<![cdata[something-html-formatted]]>\[/code\] to a xml file where I parse it as a html email body. All is working except retrieving correctly the email body.Say, for instance, I have a string like this:\[code\]<![CDATA[I need to write <b>this</b> text in <i>italic</i>]]>\[/code\]I always get the result on the email like this:this</b> text in italic</i>]]>How can I pass the complete string to the XML file?Thanks in advance!