Hello,
I am trying to produce a surveying powerapp, where by users enter info in text input fields and then take a series of photos of the surveyed object in the app. The app then saves these pictures to a gallery/ collection. I then want to send text and the photos in an email as an attachment to the user.
I am unable to do this by saving the images to a SharePoint and then creating a flow due to company restriction access on the SharePoint.
Is there another way I can do this, I have tried using html text below but can't seem to get to work:
Office365Outlook.SendEmailV2(
"Jamesbond@gmail.com","Telemetry Survey", {Bcc: "",Importance: "Low",
Attachments: ForAll(AllPhotos, {Name: AllPhotos, ContentBytes: AllPhotos,'@odata.type' : ""
}
)
}
)
)
Any help would be greatly appreciated.