Question
Setting a boolean value to Yes/No for subscription management confirmation
Hi. We would like to be able to put a Yes/No next to each preference center option when it is presented in the Confirmation landing page. I've tried the script below without success. Anyone have any suggestions? Thanks in advance.
#if (${lead.pCMarketingCommunications} == 1 )
#set ($pcMarketingCommunications = "Yes,")
#if (${lead.pCMarketingCommunications} == 0 )
#set ($pcMarketingCommunications = "No,")
#END