Parse .msg file using C# [closed]
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
开发者_StackOverflow中文版 Improve this questionI need to parse Outlook .msg files. How do I do it? Are there any classes?
I found http://www.aspose.com/purchase/pricing-info-step-1-of-3.aspx
Aspose it is a third party tool, which I need to purchase.
Is there any other way without purchasing?
This article on CodeProject (http://www.codeproject.com/Tips/712072/Reading-an-Outlook-MSG-File-in-Csharp) its everething that you need.
Very complete and funcional.
- In the Outlook Object Model, use Application.Session.OpenSharedItem (will return
MalItem
). - If using Redemption is an option (I am its author), use its RDOSession.GetMessageFromMsgFile method.
You may take a look at this article (first hit on google).
精彩评论