without flow it is possible to send selected gallery records to email in PowerApps
Hi @venky232 ,
Do you want to add a border to the Email?
Please try:
"
<!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>
<tr>
<td>"&Gallery4.Selected.ID&"</td>
<td>"&Gallery4.Selected.Title&"</td>
<td><a href="&Gallery4.Selected.TestHy&">Link</a></td>
</tr>
</table>
</font>
</body>
</html>
"
Hope this will help you,
Best Regards,
Tina
my question is to create gallery selected records as table .format . and mail should have table
Hi @venky232 ,
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)
Hope this will help you,
Best Regards,
Tina
will it create HTML table of selectedgallery items? & also one coloumn has hyperlinks it will capture?
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
WarrenBelz
146,524
Most Valuable Professional
RandyHayes
76,287
Super User 2024 Season 1
Pstork1
65,906
Most Valuable Professional