Can Velocity process program tokens?
If I just want to pass an array of values through an API call as a program token, can I use a Velocity token to format those values? If so, how?
Example:
{{my.ProductList}} = "Name1~ImageUrl1|Name2~ImageUrl2" (or could be json or some other format)
{{my.VelocityScript}} ==> <table><tr><td>Name1</td><td><img src='ImageUrl1'><td></tr><tr><td>Name2</td><td><img src='ImageUrl2'><td></tr></table>
I would just like to NOT have to do email presentation in my source application. I can't think of any other way, but I'm not sure if Velocity can even process program tokens.