I am trying to show a field in an email if a check...
# general
p
I am trying to show a field in an email if a check box is checked. I tried using
<#list transaction.apply as app>
<#if app.apply == "Yes">${app.refnum}</#if>
</#list>
but this is not working. If I show
${app.apply}
I see a Yes No so I tried that but still no joy, What should the if statement be?