OMG it is working!!! I could cry with happiness š¤Æ This is Amazing!!!
Thank you so much for your patience and guiding me through this š.
Is there is any way to control how the information is listed? At the moment it is wrapping the links [see image]. I can see that I might need to use ā\r\nā or a (System.lineSeparator() but not sure how to incorporate it into the code.
I can see that I might need to use ā\r\nā or a (System.lineSeparator() but not sure how to incorporate it into the code.
Donāt know why you would be thinking about a real line break? HTML uses <br> and this is HTML.
Thank you for confirming. I included at the end after the </a> <br> and that worked beautifully.
I need to build a form which has a multiple select check box. [To be used at an event to be able to send content that is relevant in a follow up email] - is this possible.
To reduce confusion for later readers, thereās no such thing as a āmultiple select checkbox.ā
Thereās a Checkbox field type.
And thereās a Checkboxes field type.
So if youāre using a Checkboxes field, the server value in Marketo could look like āoranges;apples;pearsā. (If you output the {{lead.token}} for that field, youād see that whole string.) Therefore, if you want to know which boxes were checked, you have to use a Filter with the Contains operator. Note this type of Contains match can be prone to unexpected results, so I recommend enclosing each value in some special character like a square or curly brackets. In other words, store [oranges] instead of just oranges.