Dont want to list empty fields in email notification

Hey if I wanted to take out empty fields in my email notification how can that be done

0 3 100
3 REPLIES 3


ones highlighted are in yellow how can I take them out or any other empty fields in the email notification pls lmk

Instead of having the field configuration as

name: <<[Name]>>
customer: <<[Customer]>>

please try the following format in the template for the fields that are likely to be blank.

<<IFS(ISNOTBLANK([name]), CONCATENATE(โ€œname: โ€œ,[name]))>>

<<IFS(ISNOTBLANK([customer]), CONCATENATE(โ€œcustomer: โ€œ,[customer]))>>

Top Labels in this Space