Tokens within a velocity script
Can I include a token, not a SalesForce object but a local token, within a velocity script?
I have a datetime token that I use to trigger the flow. I want to format this token into something more human readable to include within my email.
I've tried something like this:
#set($formattedDate = $date.format("yyyy-MM-dd", ${{my.arbitrary_date}}))
${formattedDate}
where, {{my.arbitrary_date}} is a local token in the same Marketo project.