Hi Sanford, Yes, absolutely! To clarify - we're sending one email to different audiences and each audience receives a specific landing page. Each email send also needs to have changing UTM parameters to best address attribution for each audience/email. Right now, my token {{my.LandingPage}} includes a case for each special landing page, for instance: #if(${lead.Parent_Campaign__c} == "XXXX") #set($landingPage = "www.virtahealth.com/thevirtatreatment?utm_source=MarketoCommunity&utm_campaign=${lead.utmcampaign}&utm_content=${lead.utmcontent}") Within the campaign before the time of send, those data values are updated for lead.utmcampaign and lead.utmcontent (source stays the same, so the value is just within the token). In the email itself, the <a> is as follows: <a href="{{my.LandingPage}}"></a> Based on my consultations with marketo during our launch and reading through the dev docs, it was my understanding that using velocity tokens was the best way to handle this sort of scenario. Are you saying there is a better way based on updating the lead itself via {{lead.tokens}}? If so, I plan to absolutely read up on that. Thanks for your guidance!
... View more