I have built a PowerApps Email template. I have added the attachment control to the Email Screen. Now User sends approval for the document. That data will stored in the SharePoint List.
In the SharePoint List, I have columns, "Created Name, Approver Name, and Attachment Name".
In the Email Template screen, Send Button icon, On-select Property
I used the Patch Function. Which I inserted below
Patch(
'SPListName',
Defaults('SPListName'),
{
'Author': {
'@odata.type': "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedUser",
Claims: "i:0#.f|membership|" & Lower(User().Email),
DisplayName: User().FullName,
Email: User().Email,
Picture: ""
},
'Approver Email': Concat(MyPeople, Mail & "; "),
'Created By': User().FullName,
'Attachment Name': Concat(EmailAttach.Attachments, DisplayName & "; ")
}
);
I'm Facing Issue in the above PowerAppscode. Can anyone help me to solve this issue?
Scenario: In Power Apps Email Template screen, When user clicks the send button,
1) In mail, approver receive the document and message sent by the user.
2) Data store in SharePoint List. (Approver name, User Name , Attachment Name)

Report
All responses (
Answers (