VSTO Outlook Addin电子邮件发件人姓名

时间:2015-04-30 02:34:41

标签: c# vsto outlook-addin

我有一个VSTO Outlook 2013插件,当读取邮件窗口打开时,它会从CurrentItem读取属性。当我获得属性Sender时,我总是得到系统.__ comobject为什么它会一直返回?

3 个答案:

答案 0 :(得分:1)

Sender属性返回一个AddressEntry对象,该对象对应于发送MailItem的帐户的用户。

答案 1 :(得分:1)

//if it is a regular mail or a Meeting mail
var senderName = mail.Sendername;

//if it is a task mail
var senderName = mail.Owner;

希望可以帮助您!

答案 2 :(得分:1)

Outlook.Application oApp =新的Outlook.Application(); Outlook.NameSpace oApp1 = oApp.GetNamespace(“ MAPI”);

oApp1.CurrentUser.Name;