0 votes

I am wondering if there is an escape for the square brackets in your HtmlReplyTemplate. I want to create an email template containing some Outlook specific parts like:

<!--[if !mso]>
<STYLE>v\:* {behavior:url(#default#VML);}
o\:* {behavior:url(#default#VML);}
w\:* {behavior:url(#default#VML);}
.shape {behavior:url(#default#VML);}
</STYLE>
<![endif]-->

but, of course, the square brackets lead to an error. How can I do this?

by

1 Answer

0 votes
 
Best answer

Escape them with backslash: \ [
Backslashes must also be escaped: \ \

by (297k points)
...