Hi,
I created a new token called my.daysFromStart and has a number and I wonder if is possible to use this token in a new email script token.
Example
#if ($days > {{my.daysFromStart}})
#end
But I don’t if is possible.
Thanks
Solved! Go to Solution.
No, you can’t simply refer to another {{my.token}} with the token name like that.
You can set (#set) a variable in one Velocity {{my.token}} and then refer to that same $variable in a subsequent {{my.token}} if both tokens are in the email.
No, you can’t simply refer to another {{my.token}} with the token name like that.
You can set (#set) a variable in one Velocity {{my.token}} and then refer to that same $variable in a subsequent {{my.token}} if both tokens are in the email.
Thanks Sanford, I'll follow your recommendation