我尝试了不同的方法,但是当我在Outlook中选择多个帐户时,我无法找到一种方法来确定从Outlook 2007到Outlook 2013可靠的发件人地址。
我的插件基于外接式Express。
目的是从活动的新 mailitem(活动邮件主题)获取帐户发件人地址。
inspector = (AddinModule.CurrentInstance.OutlookApp as Outlook.Application).ActiveInspector();
mailitem = inspector.CurrentItem as Outlook.MailItem;
在Outlook 2013中,可以使用:
mailitem.SendUsingAccount.CurrentUser.AddressEntry.Address
当我的加载项在Outlook 2010或2007上运行时,如何获取发件人地址?
答案 0 :(得分:2)
SendUsingAccount已在Outlook 2007中添加,因此您应该很好。
我不确定您为什么要使用mailitem.SendUsingAccount.CurrentUser.AddressEntry.Address
- 您将始终获得默认Outlook帐户的地址。
您是否尝试过使用mailitem.SendUsingAccount.SmtpAddress
?