Hi,
I am working on a power app form which is used to get few details along with attachment, which is then fed to another flow and then finally sent as an email.
My power app has an attachment datacard and submit button. I am trying to send the email attachment name and content through submit button to flow using below formulas (neither of them are working).
was trying with below method too.
Set(VarAttachmentControl,JSON(Image1.Image,IncludeBinaryData)); Set(VarBase64Only, Mid(VarAttachmentControl,Find(",",VarAttachmentControl)+1, Len(VarAttachmentControl)-Find(",",VarAttachmentControl)-1));
But was not sure what does Image1 means here .
Help me out with solution .
Thanks in advanced