桌面上的 Outlook 插件 Pin 插件

Outlook addin Pin add-in on desktop

我一直在创建一个插件,在阅读电子邮件时为客户提供支持。问题是有没有一种方法可以像 Insight 加载项一样固定加载项,以便在客户打开电子邮件时继续帮助他们?

在查看 Microsoft Outlook 文档时,我没有找到任何在桌面上添加图钉的方法

我从文档中得到的唯一注释是:

In Outlook, click File > Manage Add-ins.

Click Manage Add-ins

In Outlook Web App, click Settings Settings > Manage add-ins.

Under Manage add-ins, in the Turned on column, select the check box for the add-in you want to enable.

Turn on or off add-ins

Microsoft Outlook documentation

如果您要为加载项清单创建 Outlook web add-in, this is possible by adding a pinnable task pane

请参阅完整的链接文档 XML。如果您已有任务窗格,则可以向其中添加 SupportsPinning 元素。

<Action xsi:type="ShowTaskpane">
  <SourceLocation resid="readTaskPaneUrl" />
  <SupportsPinning>true</SupportsPinning>
</Action>

实现 ItemChanged event 的处理程序也很重要,这样您的加载项就可以在用户选择不同的消息时显示更新的信息。