Outlook
A family of Microsoft email and calendar products.
4,081 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Do invoking an Outlook add-in using actionable message work on Outlook Legacy UI (Old UI)? I tried using signed card and following json, it worked on New UI but didn't work on Legacy Outlook on Mac.
{
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"type": "AdaptiveCard",
"version": "1.4",
"body": [
{
"size": "large",
"text": "Hello Actionable message",
"wrap": true,
"type": "TextBlock"
}
],
"actions": [
{
"type": "Action.InvokeAddInCommand",
"title": "Open Actionable Messages Debugger",
"addInId": "3d1408f6-afb3-4baf-aacd-55cd867bb0fa",
"desktopCommandId": "amDebuggerOpenPaneButton"
}
]
}