Hi
I am currently developing approval request, but one of functions is not working very well.
I would like to create new share point list item using power apps form,
and send an email with link to get approval to 1st approval by clicking "accept" icon.
Screen1:
BrowseScreen1 - Browsedallery1(connected with sharepoint "tax inv amend")
* BrowseGallery - Onselect property
Set(varItem, ThisItem); Navigate(DetailScreen1, Fade);
Screen2:
EditScreen1 - EditForm1(connected with sharepoint "tax inv amend")
*EditForm1 - OnSuccess property
Set(varItem,EditForm1.LastSubmit); ViewForm(EditForm1);
*IconAccept1 onSelect property
SubmitForm(EditForm1);
Set(varRequest, EditForm1.LastSubmit);
Office365Outlook.SendEmailV2(
varRequest.OP_1stApprover,
"Tax Invoice Amend Request - Approval Required",
"Tax Invoice Amend request was made for "&varRequest.DebtorName&"<br>"
&"<a href="""&varAppID&"?recordid="&varRequest.ID&""">Click here</a> to approve/reject the request."
,
{Cc:Office365Users.MyProfileV2().mail}
);
Refresh('Tax Inv Amend');
Please advise...