
Announcements
Trying to create a team event, and placing images inside the event. On top of this the images are generated from a sharepoint list. The issue I have is it works in outlook web version, it fails in outlook. What the best way to send an image.
This is the flow that I have:
And then will add the variable to the event task in the description.
This is the flow:
Get attachements -> select the sharepoint list and get the items.
For each attachements
Get file using path
Compose -> @{base64(outputs('Get_file_content_using_path')?['body']['$content'])}
Append to ImagePath -> <img src="data:image/jpeg;base64, @{outputs('Compose')}" width="60" height="60"></img>
Add to event ImagePath variable.
I need consistency with at least microsoft outlook applications, it needs to send images in the events. Is there a good way for this?