用于打开MSG文件的C#Outlook interop和OpenSharedItem

时间:2009-12-15 12:17:27

标签: c# interop outlook office-interop msg

我是否可以使用任何教程或资源来使用OpenSharedItem outlook互操作方法。我的目标是使用它来读取MSG文件(因为apparently可以这样做)。

2 个答案:

答案 0 :(得分:22)

感谢Svetlozar,我已经使用这些资源来创建如下内容:

Microsoft.Office.Interop.Outlook.Application app = new Microsoft.Office.Interop.Outlook.Application();

var item = app.Session.OpenSharedItem("C:\\test.msg") as Microsoft.Office.Interop.Outlook.MailItem;
string body = item.HTMLBody;
int att = item.Attachments.Count;

对于那些正在寻找快速启动的人来说,这可能是有用的。

答案 1 :(得分:4)