How to Receive an array of bytes from an azure function and convert to xls to send by email with logic apps
Angelica Villamil
1
Reputation point
I have a project like a serverless with an azure function who create an excel with 2 sheets, I need to send this file to a "HTTP trigger" to the logic app to send later by email.
The function who create the excel returns an bytes[] or a base64 (I have tried both), but I need to convert this data to xlsx to send with the connector "outlook"
This is my function who create the excel:
I tried to do in logic apps by this way:
But I received in my inbox mail this file:
How can I do this?
Sign in to answer