Hello Everyone,
I just recently started learning powerapps for my company and its very confusing (a lot to take in)
Right now im trying to figure out the following if anyone can help me.
I have a spreadsheet in excel formed as a table and an app in powerapps created via canvas. When people submit the information on the app, it updates the excel sheet by adding it in another row which is great. But how can i do that while also sending a "Receipt of confirmation email" to the user submitting the information along with the information submitted on the body? I tried using flows but lack knowledge.
Much Appreciated.
Thanks
Solved! Go to Solution.
@Totalnoob
Back() is probably the issue. You have to use it on a new-line.
Office365Outlook.SendMailV2(User().Email, "Receipt of confirmation", "[Epxense Type] (Job Code)");
Back();
---
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."
Hello there. Welcome to the Power Apps Community. You can actually do this without Flow. I will tell you how.
#1 Add the Office365Outlook connector to your app.
#2 Click on your Form and select the OnSuccess property
#3 Write this code in the OnSuccess property
Office365Outlook.SendMailV2(User().Email, "Confirmation Title", "Confirmation Message")
#4 Submit the form. It will send a confirmation email.
---
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."
I have it with the formula now but it still doesnt send me an email. What am i doing wrong?
Thanks,
@Totalnoob
Back() is probably the issue. You have to use it on a new-line.
Office365Outlook.SendMailV2(User().Email, "Receipt of confirmation", "[Epxense Type] (Job Code)");
Back();
---
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."
User | Count |
---|---|
261 | |
110 | |
89 | |
53 | |
44 |