I have an instant cloud flow that we run on mobile devices, which includes an attachment field. If the user takes a picture with their camera, the flow runs without any issues and sends an e-mail with the included attachment. However, if the photo is uploaded from a folder, the flow fails. We only use iPhones for our company devices. Has anyone encountered this behavior?
Solved! Go to Solution.
A little more digging around on the internet, I solved the problem. Since we use iPhones, the images are saved in HEIC format. To resolve this I needed to add base64ToBinary() to my attachment content string.
base64ToBinary(triggerBody()['file']['contentBytes'])
A little more digging around on the internet, I solved the problem. Since we use iPhones, the images are saved in HEIC format. To resolve this I needed to add base64ToBinary() to my attachment content string.
base64ToBinary(triggerBody()['file']['contentBytes'])
Hi @David_MA ,
Glad to see you resolved the issue.
Please consider marking your own reply as a solution.
Best Regards,
Wearsky
User | Count |
---|---|
101 | |
36 | |
29 | |
25 | |
16 |
User | Count |
---|---|
133 | |
54 | |
53 | |
36 | |
26 |