I have an app where the user can email an html version of the form to themselves using an Automate flow. On the button, my code is
If(varShowPopup=true And varApps=true,
LicenseEstimate.Run(User().Email,htmlPAPerUser.HtmlText & htmlPAPerApp.HtmlText).success="True",
varShowPopup=true And varAutomate=true,
LicenseEstimate.Run(User().Email,htmlPAutoPerUSer.HtmlText & htmlPAutoRPA.HtmlText).success="True",
Notify("Data submitted succesfully",NotificationType.Success,2000),
Notify("Error occurred, please contact your administrator",NotificationType.Error,5000)
);
My problem is that the Notify message never displays. Any thoughts? I have a respond to Power Apps step in my flow.
