I have a long form that includes a tickbox for each field which says "Please tick if changed" with the value being something like "NameChanged" or "DateOfBirthChanged" for the Name and DateOfBirth fields respectively.
At the moment, my notification emails simply have the tag:
{all_fields}
So everything gets submitted. But I would only like to receive the fields which have had their respective "Changed" checkboxes ticked.
How can I do IF clauses in the notifications along the lines of something like:
{if NameChanged=1}
{Name}
{/if}
{if DateOfBirthChanges=1}
{DateOfBirth}
{/if}
Thanks,
Alex