配置多个帐户时,使用C#(VSTO或兑换)从新打开的Outlook邮件检查器获取SMTP发件人地址

时间:2014-05-22 13:57:14

标签: c# outlook ms-office vsto outlook-redemption

我尝试了不同的方法,但是当我在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上运行时,如何获取发件人地址?

1 个答案:

答案 0 :(得分:2)

SendUsingAccount已在Outlook 2007中添加,因此您应该很好。 我不确定您为什么要使用mailitem.SendUsingAccount.CurrentUser.AddressEntry.Address - 您将始终获得默认Outlook帐户的地址。 您是否尝试过使用mailitem.SendUsingAccount.SmtpAddress