在 outlook Item 发送事件处理程序中,单击消息发送时抛出的发送按钮错误

In outlook Item send event handler , click the send button error thrown while Message sending

在 Outlook 新消息撰写或编辑 outlook 事件中,单击发送按钮,(通过使用 outlook 加载项中的 Item 发送事件处理程序),单击发送按钮抛出此错误

但我想要这个,当我单击发送按钮时,一个在我的 outlook 加载项 command.js 文件上触发,它不会触发此文件中的任何内容,抛出此错误

在 outlook 加载项 manifest.xml 文件中,将此代码用于项目发送事件处理程序

 <ExtensionPoint xsi:type="Events">
        <Event Type="ItemSend" FunctionExecution="synchronous" FunctionName="validateSubjectAndCC" />
      </ExtensionPoint>``

这个提到的函数名称调用了我的 command.js 文件,但函数内部没有触发任何东西,它显示在 outlook 信息栏错误

备注:我的outlook插件是用javascript语言开发的

对此有任何想法请与我分享

提前致谢

很可能 OfficeJS 运行 时间找不到加载项清单文件中提到的功能。确保加载项托管在清单文件中提到的 URL 中。您也可以尝试 运行 the sample add-in 在 GitHub.

上可用