rtc 4, email template, character replace problem. - solved
According to the RTC support guide, the Email template language is Apache Velocity.
the Apache Velocity language says that I should be able to manipulate the contents of variables using the java string class methods. and example is
but I get an error when I try this.. Invalid reference $a.replace() |
Accepted answer
have to GET the thing in string format first
#set( $a = "Hello" )
displays He++o
#set( $c = $a.toString().replace("l", "+")
does the same Jared Burns selected this answer as the correct answer
|
One other answer
Your answer
Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means. Learn more here.