forked from tony-zhu/SendActionableMessage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmail.html
32 lines (32 loc) · 1.02 KB
/
mail.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<script type="application/adaptivecard+json">
{
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"type": "AdaptiveCard",
"version": "1.0",
"originator": "",
"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"
}
]
}
</script>
</head>
If the card doesn't appear, <a target="_blank" href="https://store.office.com/app.aspx?assetid=WA104381686&productgroup=Outlook&mktvid=PN102957641&mktcmpid=sendmailsample"/>install Actionable Messages Debugger Outlook add-in</a> to debug the issue.
<body>
</body>
</html>