Re: E-mail confirmation for submitter of PowerApps form?
Hi @Kookykrumbs ,
Do you want to send an email with the content of the form when the form is submitted successfully?
I suggest you try office365 outlook connector.
Set the form's OnSelect:
ClearCollect(collection1,Form1.Updates);SubmitForm(Form1)
//save the form's data to a collection
Try to set the form's OnSuccess:
Office365.SendEmail("To email address","subject",
"<strong> collectionname </strong>" &
"<table width='100%' border='1' cellpadding='5' style='border:1px solid black; border-collapse:collapse'>" &
"<tr style='background-color:#efefef'>
<th>field1</th> <th> field2</th> <th> field3 </th><th> field4 </th>
</tr>
<tr>" &
Concat(Cart,
"<td>" & field1 & " </td>
<td>" & field2 & " </td>
<td>" & field3 & " </td>
<td>" & field4 & " </td>
</tr><tr>") &
"</table>",
{IsHtml:true})
You could use html text to represent the form's content.
Here's a similar issue for your reference:
https://powerusers.microsoft.com/t5/Creating-Apps/HTML-email-format/td-p/179251
Best regards,