Tagged Questions

9
votes
7answers
5k views

Read from .msg files

I need to read from Outlook .MSG file in .NET without using COM API for Outlook (cos it will not be installed on the machines that my app will run). Are there any free 3rd party libraries to do that? ...
3
votes
6answers
4k views

save System.Net.mail.MailMessage as .msg file

I am building an application where i am obligated to create a MailMessage (System.Net.mail.MailMessage) and save it on the disk as .msg extention not .eml Below is the method i'm using to save a ...
2
votes
2answers
345 views

Display a .msg file using WPF in C#

I am currently designing and implementing an application whereby a user can preview and classify emails (amongst other features). I wish to create a 'preview' of the email message which is in a .msg ...
1
vote
1answer
546 views

Problem with reading *.msg outlook file using Microsoft.Office.Interop.Outlook

I'm writing piece of code which will handle extraction of information from email stored in *msg Outlook file. The idea how to do it I took from C# Outlook interop and OpenSharedItem for opening MSG ...
1
vote
2answers
2k views

C# Outlook interop and OpenSharedItem for opening MSG files

Is there any tutorial or resource I can follow in order to use the OpenSharedItem outlook interop method. My goal is to read MSG files using it (as it can apparently do so).
0
votes
2answers
59 views

MSG File format Parsing

Does anyone know how to get the attached linked images of a RTF email from c#? I've tried a few component vendors and blogs from the internet but none of them support getting the linked images of a ...
0
votes
2answers
502 views

How can I save a Outlook Message from Clipboard to a file?

If I select an Outlook message from my Inbox and copy it to the clipboard I can paste it as an *.msg file to the Desktop. Now I want to implement the same feature to my application. The Clipboard ...
0
votes
1answer
351 views

Is it possible to render the exact same HTML as Outlook does when displaying HTML Body of .msg files?

We are displaying HTML body extracted from .MSG files exported from Outlook. To display the HTML body, one needs to decompress RTF from PR_RTF_Compressed field and then decode the RTF to HTML ...