How to send one email with all contain in the tables records?

I need to learling send email with all contain in the tables records, but is very dificult send all data in one email, i can send one of the sections of the table record, but not all. Please i will really thanksfull with the help!.

hello @ronny, great question.

you can send an email with all the contents in a Table Record by using an expression. for example, here’s a Trigger that would achieve what you’re describing:


Expression: 'ID: ' + @Table Record.Work Order.ID + '\n' + 'Product: ' + @Table Record.Work Order.New Product + '\n' + 'Quantity: ' + @Table Record.Work Order.Quantity

this would result in the following email:

is this what you were looking for?? let us know!!