I have created a program in Marketo which has 2 campaigns, each with one email template.
Campaigns are equipped with smart list, campaigns are requested through web service api.
...
#set($greeting = "Dear Mr. Dan")
$greeting
#set($greeting = "Dear " + {first-name})
$greeting
first-name will be Mr. Dan from api call and its another text token we created (acce...