Background: Multi screen, multi form app, confirm accuracy screen, final submit button.
Expectation: Final submit button creates an email with all the listed fields to be sent to the app user and their manager.
Current reality: Error showing on button but no suggestions as to how to fix. Ran with an outside user today and couldn't get to final submission review screen. I don't what parameters it is requesting for the email as I have tried the suggested format and several others with no success.
Here's the code for final submit of OnSuccess:
If(
IsEmpty(Errors('Incident Investigation Tracker')),
IncidentNotificationResponse.Run(Office365Outlook.SendEmail(to: "" & ()User.email),Office365Outlook.SendEmail(subject: "Incident Notification"),
NotificationType.Success
);
Navigate('48hr');
Notify(
First(Errors('Incident Investigation Tracker')).Message,
NotificationType.Error
)

I've been working on this app for six weeks and can't seem to get beyond this point.
From here I want the information to auto generate a form in a sharepoint list from the info entered in the app.