Windows Outlook Client中未呈现可操作消息

时间:2019-06-12 07:41:41

标签: outlook office365

我创建了一个示例应用程序,该应用程序将Actionable Message电子邮件发送给用户。该消息已发送,并且可以在Outlook Web中以正确的格式查看,但在Windows Client中不能查看。我当前的Outlook版本是

  

版本1905(内部版本11629.20246即点即用)

消息代码正文看起来像

<html>
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  <script type="application/adaptivecard+json">{
    "type": "AdaptiveCard",
    "version": "1.0",
    "hideOriginalBody": true,
    "body": [
      {
        "type": "TextBlock",
        "text": "Visit the Outlook Dev Portal",
        "size": "large"
      },
      {
        "type": "TextBlock",
        "text": "Click **Learn More** to learn more about Actionable Messages!"
      },
      {
        "type": "Input.Text",
        "id": "feedbackText",
        "placeholder": "Let us know what you think about Actionable Messages"
      }
    ],
    "actions": [
      {
        "type": "Action.Http",
        "title": "Send Feedback",
        "method": "POST",
        "url": "https://...",
        "body": "{{feedbackText.value}}"
      },
      {
        "type": "Action.OpenUrl",
        "title": "Learn More",
        "url": "https://docs.microsoft.com/outlook/actionable-messages"
      }
    ]
  }
  </script>
</head>
<body>
Visit the <a href="https://docs.microsoft.com/outlook/actionable-messages">Outlook Dev Portal</a> to learn more about Actionable Messages.
</body>
</html>

  

访问Outlook Dev Portal以了解有关可执行消息的更多信息

显示在Outlook客户端中。不知道是否有我想念的东西。

0 个答案:

没有答案
相关问题