Hi there,
So I am trying to solve this exact issue currently; building an email that displays content blocks based off subscription/marketing lists.
For example, say a contact is in subscription lists 'Cars' and 'Boats', but not 'Bikes' - I'd like to display the content block for 'Cars' and the contact block for 'Boats'.
What I have so far is using:
{{#if (eq contact.listmember_list_contact Cars)}}
...not sure how to link in the contact block for Cars...
{{else if (eq contact.listmember_list_contact Boats)}}
...not sure how to link in the contact block for Boats...
{{else}}
...fallback content block
{{/if}}
Any help on this would be amazing.
Thanks in advance!