HI,
I have multiple flows and one of them is for sending a Teams message - to the recipient identified in a specific column (formatted for identifying people).
I want the message posted on Teams to include a clickable link for the List item. I've done this before by using one of the following:
- using HTML: <a href="@{triggerBody()?['{Link}']}">Evento</a><p></p><br><hr> (where Evento would be the clickable link)
- using Markdown: [Evento](@{triggerOutputs()?['body/{Link}']}) (where Evento would be the clickable link)
Currently, none of this approaches is working and I don't know why (the message is sent - but not with the clickable link but with a giant text / code). my Teams message is configured as:
- posting a message as a flow bot
- posting the message in a "chat with a flow bot"
I've attached some PRTSC of the code and output of the flow. Anyone can help?
The output (message) that is being sent is the following:
{
"poster": "Flow bot",
"location": "Chat with Flow bot",
"body/recipient": "exxxx@casadamusica.com",
"body/messageBody": "<p class=\"editor-paragraph\">Por instrução do Ernesto Costa, ficas responsável pela gestão técnica do evento David Bruno, a decorrer no dia 2025-01-11.</p><p class=\"editor-paragraph\">Detalhes do evento em Artifax e na Lista GIP:</p><p class=\"editor-paragraph\">[Evento](https://casadamusica.sharepoint.com/sites/GIP919-Coordenao/_layouts/15/listform.aspx?PageType=4&ListId=07d0da58%2D9a90%2D4779%2D8c8d%2Dcae4692cbe4f&ID=206&ContentTypeID=0x010075965485C559F74E896183D1C5E2C2B1)</p><br>"
}
Thanks