Hello,
To make the URL links clickable in the email or Teams notifications sent by Azure Logic Apps, you need to format the URLs as HTML hyperlinks in the body of the message. This is because the text in the email or Teams message is treated as HTML.
Here is how you can do it:
In the Logic App action where you are setting up the email notification ), you can format the URLs using HTML <a> tags. If the URL is stored in a variable incidentLink, you can create a clickable link in the email body using the following format:
<a href="@{variables('incidentLink')}">Click here to view the incident</a>
For Teams you can use the same approach.
Hope this helps.
If you found this answer helpful, please accept it so that other users can find this topic.
Regards