Outlook添加:messageCompose与message

时间:2019-02-05 21:42:07

标签: angular outlook-addin office-addins outlook-web-addins

我正在尝试查看Outlook中当前打开的电子邮件是messageCompose还是message类型(即,我的添加项正在试图确定用户是在写电子邮件还是在阅读电子邮件)。

在两种情况下 Office.context.mailbox.item.itemType 是“消息”

但是,当我 console.log(Office.context.mailbox.item) 如果我正在阅读电子邮件,则在chrome inspect enter image description here(r.message)中看到以下内容,如果正在撰写电子邮件,则看到enter image description here(r.messageCompose)。

基本上我想要的是

if(I am writing an email) {
 // do stuff
}
if(I am reading an email) {
 // do other stuff
}

还有,有没有办法在撰写新邮件和回复邮件之间进行区分?

我正在使用Angular 7。

0 个答案:

没有答案