How can I format the approval email in LF Forms to display each invoice info separately? The current setup is using a collection, 1- 10 invoices can be submitted. So if I select the collections field variable in the email body, it will display all invoices info together, only separated by a semi-colon.
For example, these 2 fields in the email body:
Vendor Name: {/dataset/AP/Vendor_Name_}
Invoice #: {/dataset/AP/Vendor_Invoice___}
Translate to:
Vendor Name: Invoice1; Invoice2; Invoice3
Invoice #: 1234; 4321; 1342
How can I format it to do this:
Vendor Name: Invoice1
Invoice #: 1234
Vendor Name: Invoice2
Invoice #: 4321
Vendor Name: Invoice3
Invoice #: 1342