如何阅读用户在使用VS 2010撰写Outlook中的新电子邮件时填写的字段(To,Bcc,CC,Body,attachment,...)?
我在Outlook中使用C#
添加了一个新的按钮新消息框我希望当用户点击按钮阅读字段时 这个客户按钮的代码:
但是消息框中没有显示。
Outlook.MailItem项目; item =(Outlook.MailItem)Globals.ThisAddIn.Application.ActiveInspector()。CurrentItem; System.Windows.Forms.MessageBox.Show(item.To);
![我的问题] [1] 感谢
[1]:http://i.stack.imgur.com/7mY9G.jpg“我的问题”
答案 0 :(得分:1)
根据PR_DISPLAY_TO / CC / BCC MAPI属性返回/ CC / BCC属性,只有在根据收件人表的内容保存邮件时才会更新它们。
尝试使用MailItem.Recipients集合。