Morning.
I am trying to send email from in Powerapps using Office365Outlook.SendEmailV2
currently OnSelect I have
Office365Outlook.SendEmailV2
(
ThisItem.'Employee Name'.Email,
"Subject field text",
"body field text"
)
this works perfect and sends the email but does not allow the user to view the email before sending.
Is there way to display the message before sending it.
Solved! Go to Solution.
Thank you very much - I ended up creating a variable for the email address and used
Launch("mailto:"& varemail & "") which launched Outlook.
Thank you for the advise.
Hi @Sn3l ,
The best you will do here (which I do) is to have a "dummy" email on a screen with all the elements on labels and then the send button on that screen.
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
MVP (Business Applications) Visit my blog Practical Power Apps
navigation on data click on add data and drop-down list -> click connector -> office 365 outlook and office 365 user
1) button onselect property
code:
Office365Outlook.SendEmailV2("your email enter","Leave is Approved","Leave Applied:" & "<br>"&
"Name: "&DataCardValue52.Text&"<br>"&
"Leave Type: "&DataCardValue63.Selected.Value&"<br>"&
"Reasons Type: "&DataCardValue61.Text&"<br>"&
"Total Leave date: "&DataCardValue60.Text&"<br>"&
""&"<br>"&"")e60.Text&"<br>"&
""&"<br>"&"")
output is display is
customize your data and check
Thank you very much - I ended up creating a variable for the email address and used
Launch("mailto:"& varemail & "") which launched Outlook.
Thank you for the advise.
User | Count |
---|---|
125 | |
87 | |
86 | |
75 | |
69 |
User | Count |
---|---|
215 | |
180 | |
139 | |
97 | |
83 |