I need to change boolean value "True" into "Yes" in email notification. So i am struct how to write it .
I have added the field subscribes
I need to do some thing like this. But the way i am doing as below is wrong
Please give me a way to do that
;-)
{%Subscribes?"yes":"no"%}
Hi,
Just a quick test I came up with the following macro:
{% if (Newsletter) { "computer says jups" } else { "computer says nope" } |(identity)GlobalAdministrator%}
where Newsletter is your field name...
Greets,
David
Hi, I can just agree with David. In your case simply use the following macro:
{% if(Subscribes) { "yes" } else { "no" } |(identity)GlobalAdministrator%}
thank you for the support
Please, sign in to be able to submit a new answer.