If row contains specifik value, then send that row, to an email

@christian.bendtsen ,

Assuming you are already handling the logic of contains of particular word that you want to filter the row.

Then after the row contains the particular word is a match, you could convert the row to Datatable using the below Expression :

{row}.CopyToDatatable

Above expression will convert only that particular row to Datatable, which will also include the headers of the Datatable.

After performing the above operation, Check the below post on converting the datatable to HTML table, so that you could add it in email body.

Let us know if you are not able to understand the steps or if the requirement is not as mentioned.