I need to create a standard desktop website with PowerApps. I accomplished this by making the DefaultMode = FormMode.New on the edit screen. However, when I try to submit an email, it's pulling saved data (the record that the edit menu is tied to). I still have the Browse and Detail screens in my project, I just wasn't planning on using them. I'm assuming I need to decouple them somehow.
I found that it was using Parent.Default to pull the saved data as if I were coming from the Details screen. When I remove this code, my SubmitForm is just passing null values. Is there a way to pass screen values to the SendEmailV2 function or somehow save the data before it submits and stick the Parent.Default back in?
OnSuccess of the edit form:
Office365Outlook.SendEmailV2(
SubmitButtonKey,
"Subject",
"<table><tr><td>" & IDKey.Text & "</td><td>" & IDValue.Text & "</td></tr></table>"
);

Report
All responses (
Answers (