Hello!
We are trying to create a recurring flow that sends reminder emails based on the dates on SharePoint list items.
Currently we can successfully extracted the items from SharePoint lists with the below Filter Array. Our conditions are as below.
@And(equals(empty(item()?['WrapupFlag']), true),not(equals(item()?['Status']?['Value'], 'Closed')),not(equals(item()?['Status']?['Value'], 'Confirming by Requester')))


However, even though the target items are successfully listed on the email, the same email are sent multiple times.

So my question is, is there a way to list the items filtered by filter array in one email and send only one email?
Thank you very much in advance.