Hello!
I have a Power Apps custom form in a SharePoint list. Is there a way to embed that custom form that was filled out and submitted by a user into the body of an email sent using a V3 email notification in Automate? I want the approver to be able to see the data in the form.
Solved! Go to Solution.
Hi @shgall02,
Do you want to send cutom form to email body?
Actually, we could not embed the custom form directly into the Email body, however we could send the form data within.
Use the "When an item is created or modified" as the trigger
<table border=1>
<tr><td>Title</td><td>Item</td><td>Status</td></tr>
<tr><td>@{triggerOutputs()?['body/Title']}</td><td> @{triggerOutputs()?['body/Item']}</td><td>@{triggerOutputs()?['body/Status/Value']}</td></tr>
</table>
Hi @shgall02,
Do you want to send cutom form to email body?
Actually, we could not embed the custom form directly into the Email body, however we could send the form data within.
Use the "When an item is created or modified" as the trigger
<table border=1>
<tr><td>Title</td><td>Item</td><td>Status</td></tr>
<tr><td>@{triggerOutputs()?['body/Title']}</td><td> @{triggerOutputs()?['body/Item']}</td><td>@{triggerOutputs()?['body/Status/Value']}</td></tr>
</table>
User | Count |
---|---|
89 | |
41 | |
22 | |
20 | |
16 |
User | Count |
---|---|
138 | |
56 | |
47 | |
36 | |
25 |