I'm trying to submit a form which then sends an email to a user using outlook 365 send an email v2 with power automate. The goal is someone fills out a form on a page, submits the form, then the person who is sent the email can edit a bottom part of the form on the same page which was hidden from the first person. However, I can't seem to get the link to navigate to the desired screen. I've been following this tutorial so far.
Here's the code for the OnSuccess for the form: If(varFormMode = FormMode.New,
CVAFLOW.Run(Form1.LastSubmit.ID);
Notify("Ticket updated successfully",NotificationType.Success);Navigate(BrowseScreen)
)
Here is the code for StartScreen: If(
!IsBlank(Param("ID")) && LookUp(
CVAA,
ID = Value(Param("ID"))
).InitiationComments = User().Email,
'ABO Screen',
BrowseScreen
)
Here is the code for OnStart: If(!IsBlank(Param("ID")),Set(varItem,LookUp(CVAA, ID=Value(Param("ID"))));Set(varFormMode,FormMode.Edit))
In my send an email action, the link in the email is the link to my Power Apps. In the tutorial I followed it seemed to be working just fine but for me it isn't.
Please let me know if you need anything else still very new to Power Apps and Power Automate.
Thank you so much in advance!!