web
You’re offline. This is a read only version of the page.
close
Skip to main content
Community site session details

Community site session details

Session Id : mU0ERjg7UopTIFft0pHpFS
Power Apps - Building Power Apps
Answered

E-mail confirmation for submitter of PowerApps form?

Like (0) ShareShare
ReportReport
Posted on 22 Jan 2020 22:47:41 by 14

Hello,

 

I'm using Powerapps as a way for my staff to send forms to another department to complete requests for our customers.  So the form could be something as simple as telling a department to send a customer a statement by mail.  Anyway, I was wondering if there's a way for my staff who fills out the Powerapps form to receive an e-mail confirmation stating that their form was submitted successfully?  Or for them to receive a confirmation of some kind in their Outlook?  I'm submitting my Powerapps forms to a SharePoint List by the way.

 

Thank you

Categories:
I have the same question (0)
  • PamHermano Profile Picture
    4 on 11 Jan 2023 at 04:40:44
    Re: E-mail confirmation for submitter of PowerApps form?

    Would someone be able to give me the formula using the Mail Connector if I want an email notification sent to the user themselves when I hit the submit button in PowerApps.  All the formulas I've seen online looks like: Mail.SendEmailV3("mickey@mouse.com","subject","body",false)

     

    But it asks for a specific email in the first quotations.  Is there any way I can just set that to go to whoever the submitter was?

  • Verified answer
    v-yutliu-msft Profile Picture
    on 23 Jan 2020 at 09:58:40
    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,

     

     

  • mdevaney Profile Picture
    29,987 Moderator on 22 Jan 2020 at 23:03:54
    Re: E-mail confirmation for submitter of PowerApps form?

    @Kookykrumbs 

    PowerApps and Flow have a couple of mail connectors you could use to do this.

    • Mail
    • Outlook 365
    • Gmail

     

    You could use these to send an email on successful submission of a form.

     

    ---
    Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."

     

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.

Helpful resources

Quick Links

Responsible AI policies

As AI tools become more common, we’re introducing a Responsible AI Use…

MS.Ragavendar – Community Spotlight

We are honored to recognize Ragavendar Swaminatha Subramanian as our September…

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 892 Most Valuable Professional

#2
Power Apps 1919 Profile Picture

Power Apps 1919 356

#3
MS.Ragavendar Profile Picture

MS.Ragavendar 310 Super User 2025 Season 2

Last 30 days Overall leaderboard
Loading started
Loading complete