如何阅读Microsoft Exchange 2007 IPM.Note信息
我必须阅读 IPM 注释并获取以下 2 条信息
1)谁向谁发送邮件 2) 所有邮件仍处于 uread 状态
我想知道如何在 C# 编码中执行相同的操作。
提前致谢
I have to read IPM note and get the following 2 information
1)who send mail to whom
2) which all mail still in uread state
I want to know how to do the same in c# coding.
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用此处描述的方法:http://www.infinitec.de/post/2011/09/08/FindItems-Helper-method-for-the-Exchange-Managed-API.aspx。
只需请求 EmailMessageSchema.DisplayTo、EmailMessageSchema.DisplayCc 和 EmailMessageSchema.From。
You can use the method described here: http://www.infinitec.de/post/2011/09/08/FindItems-Helper-method-for-the-Exchange-Managed-API.aspx.
Just request EmailMessageSchema.DisplayTo, EmailMessageSchema.DisplayCc and EmailMessageSchema.From.
使用 Outlook 对象模型 - MailItem 对象(包装 IPM.Note 消息)公开 Sender、UnRead、Recipients 属性。
Use the Outlook Object Model - MailItem object (wich wraps the IPM.Note messages) exposes Sender, UnRead, Recipients properties.