Hi,
I have an issue with some dynamic content and I hope anyone can help me out.
I use the following statement in an email, showing only text from a field on a lead when this lead matches specific criteria
{{#each contact.lead_contact_parentcontactid}}
{{#if (eq this.xx_xxlevelid 'aaaaaa-cccc-eeee-8f8e-00000000')}}
{{#if (ne this.xx_nurture 123456789)}}
Your interest is also in:
{{this.aa_fieldname}}
{{/if}}
{{/if}}
{{/each}}
But when having more leads with matching that specific criteria it is also showing "Your interest is also in:" more than once. How can I obtain that this specific test is only showing once when leads find that match that criteria?
Thanks in advance!