hello world"> ${text} Output: hello world I want it to be " /> hello world"> ${text} Output: hello world I want it to be " /> hello world"> ${text} Output: hello world I want it to be "/>

Oracle Responsys RPL: Render HTML from a String in email

514 Views Asked by At

Im trying to render html tags from a string in Responsys RPL

<#assign text = "<b>hello world</b>">

${text}

Output: <b>hello world</b>

I want it to be

Output: hello world

Are there any metodes for executing the html tag when rendered?

1

There are 1 best solutions below

0
Bidstrup On

Found it:

<#noescape>${text}</#noescape>