Hey,
in Power Apps I've made a app that let people fill in a form (linked to a SP-list). They also can add attachments (in a Attachmentcontrol). When they click on a button "submit" I also want to send an email with the provided info and the added attachments as mailattachments.
On the OnSelectproperty of the button I linked a Flow with the Mail connector. The mailattachments are 'asked in power apps'.
Now I want to send the added attachments in the Attachmentcontrol to the Flow, but I can't figure it out. My OnSelect-code looks like this:
'MyFlow'.Run("mail@mail.com"; "Subject"; "Body";Attachmentcontrol.Attachments.Value)
This returns a table with the column 'Value' and the Blob-values as records. It requires a 'Blob-value'. Anyone an idea how to send those file(s) (multiple attachments are possible) to the Flow?
Thanks in advance!
Btw: no, I can't use the Outlook-connector due to company restrictions.