我正在实施Outlook加载项,该加载项在个人网络应用程序上跟踪电子邮件。
目前,它只允许用户选择和跟踪一封电子邮件。
我想将其扩展以管理整个线程。
我的意思是:我希望它在邮箱内定期扫描新项目以自动跟踪潜在响应。
实际上,一种“接收”触发器会更好,但是我没有发现有关“基于事件的Outlook加载项”文档的任何信息。
希望这个问题不是太琐碎了,谢谢!
I am implementing an Outlook add-in which tracks emails on a personal web app.
Currently it just allows the user to select and track a single email.
I would like to extend it to manage the whole thread.
I mean: I would like it to periodically scan new items inside the mailbox to automatically track the potential responses.
Actually, a kind of "on-receive" trigger would be nicer, but I have not found anything about looking at the "Event-based Outlook add-in" docs.
Hoping the question is not too trivial, thanks in advance!
发布评论
评论(1)
Outlook Web附加组件仅在当前选择的项目的上下文下工作。因此,您需要选择一个项目来触发加载项。不幸的是,没有“接收到的”触发因素。
注意,当开发人员完成计划过程时,考虑了技术社区的功能请求。使用github标签:。
作为可能的解决方法,您可以看一下 graph api 。
Outlook web add-ins work under the context of currently selected item only. So, you need to select an item to trigger an add-in. There is no "on-receive" trigger unfortunately.
Note, feature requests on Tech Community are considered, when the dev team go through the planning process. Use the github label: “Type: product feature request” at https://aka.ms/M365dev-suggestions .
As a possible workaround you may take a look at Graph API.