Using PostUserNotification Operation
I would like to schedule a private message to some team members via 'Flow'.. it is a maintenance message so I do not want it to come from me.
I cannot add HTML or MD into the messageBody of the flow and have it resolve properly in the message. Here is an example:
{ "inputs": { "host": { "connection": { "name": "@parameters('$connections')['shared_teams']['connectionId']" } }, "method": "post", "body": { "messageTitle": "Test", "recipient": { "to": "email@email.com" }, "messageBody": "This should be a <a href=\"http://google.com\">LINK</a>" }, "path": "/flowbot/actions/notification/recipienttypes/user", "authentication": "@parameters('$authentication')" } }
Any help is much appreciated. Thanks!