Notifications
Announcements
without flow it is possible to send selected gallery records to email in PowerApps
Hi @venky232 ,
I made a Simple for you.
Please try:
Office365Outlook.SendEmailV2("a@xxx.com","Records",Concatenate(Gallery4.Selected.ID,",",Gallery4.Selected.Title,","))
Hope this will help you,
Best Regards,Tina
will it create HTML table of selectedgallery items? & also one coloumn has hyperlinks it will capture?
You can insert a HTML Text in the Canvas App.
"<b><font color=black><table><tr><th> ID </th><th> Title </th><th> HyperLink </th></tr><tr><td>"&Gallery4.Selected.ID&"</td><td>"&Gallery4.Selected.Title&"</td><td><a href="&Gallery4.Selected.TestHy&">Link</a></td></tr></table></font></b>"
OnSelect of Button:
Office365Outlook.SendEmailV2("Email","Records",HtmlText2.HtmlText)
my question is to create gallery selected records as table .format . and mail should have table
Do you want to add a border to the Email?
"
<!DOCTYPE html>
<html>
<style>
table,th,td {
border: 1px solid black;
border-collapse: collapse;
}
</style>
<body>
<font color=black>
<table style=width:100%>
<tr>
<th>ID </th>
<th>Title </th>
<th>HyperLink </th>
</tr>
<td>"&Gallery4.Selected.ID&"</td>
<td>"&Gallery4.Selected.Title&"</td>
<td><a href="&Gallery4.Selected.TestHy&">Link</a></td>
</table>
</font>
</body>
</html>
Best Regards,
Tina
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.
In our never-ending quest to improve we are simplifying the forum hierarchy…
Congratulations to our 2025 community superstars!
These are the community rock stars!
Stay up to date on forum activity by subscribing.
Kalathiya 321 Super User 2026 Season 1
WarrenBelz 289 Most Valuable Professional
MS.Ragavendar 200 Super User 2026 Season 1