Hi, I can't figure out why my email script is not working:
Here is the situation:
A lead fills out a form for our upcoming user conference and can choose a combination of sessions that they would like to attend. The lead then receives an email response with dynamic content based on the sessions that they chose.
#if (${lead.intelliconSession1} == "1")
<p><strong> TEXT</strong></p>
#end
#if (${lead.intelliconSession2} == "1")
<p><strong>TEXT </strong></p>
#end
#if (${lead.intelliconSession3} == "1")
<p><strong>TEXT</strong></p>
#end
#if (${lead.intelliconSession4} == "1")
<p><strong>TEXT/strong></p>
#end
#if (${lead.intelliconSession5} == "1")
<p><strong>TEXT</strong></p>
#end
#if (${lead.intelliconSession6} == "1")
<p><strong>TEXT</strong></p>
#end
... View more