Hi @Silva_BR,
Do you want to email with the filter Gallery records?
Could you please share a bit more about your scenario?
Actually, you could achieve this using the HTML text control.
You can make an Html table with the content of the filtered Gallery and send it as the body of the email
I have made a test for your reference.
I set the Gallery Items property as below:
Filter(Actions,!IsBlank(Car))
Add a HTML text box and set the HtmlText property as below:
"<strong> Information: </strong>" & "<table width='100%' border='1' cellpadding='5' style='border:1px solid black; border-collapse:collapse'>" & "<tr style='background-color:#efefef'>
<th>Title</th> <th> ActionID </th><th> ID </th>
</tr>" & Concat(
Gallery27.AllItems,
"<tr>
<td>" & Title & " </td>
<td>" & ActionID & " </td>
<td>" & ID & " </td>
</tr>"
) & "</table>"
Add an Button and set the OnSelect property as:
Office365Outlook.SendEmailV2("xxx@microsoft.com","Notify",HtmlText1.HtmlText)
