Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
Output for ${oN24Attendee_cList}[{email=cstanton@xxxx.com, eventid=2923321, eventuserid=396136339, personid=85610818, createdAt=2020-12-14 12:14:30, updatedAt=2020-12-16 10:24:27, marketoGUID=6e1d4db5-f994-402f-8f8c-226e5df5fb1d, answeredsurveys=1, archiveminutes=0, askedquestions=1, attendedarchive...
I think its to do with the IF loop, seems to go blank when adding that within the FOR loop.
This is the field I am trying use to filter correct data into the email, what needs to show after data format complete:this is what is showing at moment, but is from another record in custom object for that customer19 April 2021 03:00 PMfields that are used:${oN24Attendee_cList.get(0).eventdatetime}...
Hi Sanford,Thanks for the help but when I add in the formatted field $eventdatetime_formatted within that loop nothing shows up(only blank space). The field I am targeting is eventid ${oN24Attendee_cList.get(0).eventid}. I used your code but it still shows blank.
I have the following code, which formats date exactly the way I need it.The issue is I only want to show the date in email which matches correct $eventid for customers. I tried this loop but nothing populates: #foreach( $eventid in $oN24Attendee_cList )#if( $eventid.equals("2862094") )$eventdatetime...
Is there an example I can follow or maybe help update the above code?
Sorry Sanford, maybe I not explained correctly - the code already splits them to individual lines. I want to amend the code so I can separate each line where they maybe a comma: Say this is one line: Part - 7984219, P2220 Oscilloscope Probe, Passive, 300 V Qty. - 11 Is it possible to use comma deli...
Hi Sanford,Thanks that did work but is there a way to split field $lead.First_5_Lines_in_Basket__c into 3 separate fields i.e. field 1, field 2 and field 3 which will allow me to place anywhere in an HTML table? Something like below for each field Field 1 = Part - 7984219, Field 2 = P2220 Oscillosco...
Hi, I have the following code which looks up a field in Marketo and pulls through the content, but I have an issue I am trying to start a new row when a certain delimiter "Part" pops up within the content: #if(!$lead.First_5_Lines_in_Basket__c.isEmpty())#set($First_5_Lines_in_Basket__c = $lead.First...