打开新邮件表单时收到消息或通知?
我需要 Outlook 插件中的事件/消息/通知,当用户打开新邮件表单时会触发该事件/消息/通知?我不知道如何确定打开了哪个窗口。
I need an event/message/notification in an outlook addin, which fires when a new mail form is open by an user? I don't know how to determine which window is opened.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以利用 Inspectors.newInspector 事件,该事件在您在新窗口中打开任何 Outlook 项目时引发。在此事件的事件处理程序中,您可以检查 Inspector.CurrentItem 类型是否为 Outlook 邮件,并且邮件项目的 isSent 为 false,这意味着它是处于编辑/撰写模式的 Outlook 邮件项目。
You can make use of Inspectors.newInspector event which is raised when you open any outlook item in a new window. In the event handlerfor this event, you can check if the Inspector.CurrentItem type is Outlook mail and mail item has isSent as false that means it is an outlook mail item in edit/compose mode.