Hello
Is there any ways to send an image from library as a teams message?

Hello
Is there any ways to send an image from library as a teams message?
Hi @ppl,
Based on the issue that you mentioned, do you want to send an image from SharePoint library to Teams?
Could you please share a bit more about your scenario?
I think you should use the "Post your own adaptive card as the Flow bot to a channel" action.
I have a test on my side, please take a try as below:
Please write the following expression into the Expression bar within the url Map:
item()['{Thumbnail}/Large']
Write the following
{
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"type": "AdaptiveCard",
"version": "1.0",
"body": [
{
"type": "TextBlock",
"text": "Photos from SharePoint Picture Library",
"id": "Title",
"size": "Large"
},
{
"type": "TextBlock",
"text": "Photos from SharePoint Picture Library",
"size": "Medium",
"weight": "Lighter"
},
{
"type": "ImageSet",
"imageSize": "large",
"spacing": "large",
"images": @{body('Select_2')} // You could select the output from the Expression bar
}
],
"spacing": "Large"
}
The above is my testing result.
Check if this could help you.