OK.. Nothing happening here is good.
you can't have all those quotes in the link like that (hence why I said they needed escaping).
Also, look at what the code is doing.... the final output stage outputs
Title: aEvent.title
When: aEvent.when
Where: aEvent.where
you only need to call the token once.
Just make your links (for now) some thing simple like the word BOB.
Then once you've got that working, I'll loop back to the links issue.
@freeza ,
getting out in front of the link question that'll be coming next. Do it like this. You don't need to replicate the styles, html etc. etc. etc.
#set( $allEventDetails = {
"Seattle HUG: UserTesting Hacks (4/7 10 am Pacific)" : {
"title":"Seattle UserTesting Hacks HUG Event",
"date":"Thursday, April 7th at 10 AM PT",
"destination":"usertesting.zoom.us/j/98148200405?pwd=K0d3SFFJWFpvY1FMN2RQWWMvSXkvUT09"
},
"London HUG: UserTesting Hacks (4/12 2 pm GMT)" : {
"title":"London UserTesting Hacks HUG Event",
"date":"Tuesday, April 12th at 2 PM GMT",
"destination":"usertesting.zoom.us/j/97207484508?pwd=dHRyakZ2c2orQ1FMM28vMk5aMU80QT09"
},
"Chicago HUG: UserTesting Hacks (4/19 10 am Central)" : {
"title":"Chicago UserTesting Hacks HUG Event",
"date":"Tuesday, April 19th at 10 AM CT",
"destination":"usertesting.zoom.us/j/97012930463?pwd=d2h0TGc4cXZYaTJ2ZWdDUGpCNkUxdz09"
},
"Texas HUG: UserTesting Hacks (4/28 10 am Central)" : {
"title":"Texas UserTesting Hacks HUG Event",
"date":"Thursday, April 28th at 10 AM CT",
"destination":"usertesting.zoom.us/j/94723137214?pwd=ZzZuNkZlWG1SM3M1VE80a3ZvdmZyUT09"
}
}
)
#set( $aEvent = $allEventDetails[$lead.hUGEventChoice])
<p>Title:${aEvent.title}</p>
<p><b>When:</b>${aEvent.when}</p>
<p><b>Where:</b><a href="https://${aEvent.where}" style="color: #315CFD; text-decoration: underline;" target="_blank">Remotely via Zoom</a></p>
That should be getting pretty close to what you need