Click here to Skip to main content
15,867,771 members
Articles / Programming Languages / C# 4.0
Tip/Trick

Reading an Outlook MSG File in C#

Rate me:
Please Sign up or sign in to vote.
4.96/5 (23 votes)
12 Jun 2014CPOL5 min read 1M   9.5K   60   112
Going on with a great article where another author left in 2010

Introduction

First of all, this tip is an extended version for this great article --> http://www.codeproject.com/Articles/32899/Reading-an-Outlook-MSG-File-in-C. Actually, it is not an alternative to the original version, but just a new version.

The latest source can always be found on github. Just go to https://github.com/Sicos1977/msgreader.

Background

At my work, I needed something to read Outlook MSG and EML files . After searching on the internet, I found a nice article on CodeProject that did everything I needed. At least I thought it did.

After testing the code, I found out that some MSG files had the HTML part of the e-mail embedded into RTF. This is done by Microsoft to support legacy. A dozen years ago, it was normal to write E-mails in RTF format instead of HTML. I don't know why the HTML is sometimes embedded into the RTF, but it is.

Because that was a problem for me, I extended the original code with some extras:

  • The ability to read HTML that is embedded into the RTF body
  • The ability to read EML headers that are embedded into the MSG file when it is sent across the internet
  • Add an Outlook style header to the HTML or text file
  • The ability to save the MSG file as an HTML or text file to a folder
  • The ability to write all the attachments to a folder
  • The ability to use the code from a COM based language like VBA or VB6
  • Here and there, I fixed some issues that were found by other users

Bug Fixes and New Versions

When you do find a bug or have a future request, then just add a comment to this tip and I will see what I can do in my spare time.

Using the Code

Below, you see the most important class in this project. The class just does one thing, read the MSG file and save everything to an output folder. Through the IReader interface, the class is exposed to COM.

C#
using System;
using System.Collections.Generic;
using System.IO;
using System.Runtime.InteropServices;
using DocumentServices.Modules.Readers.MsgReader.Outlook;

namespace DocumentServices.Modules.Readers.MsgReader
{
    public interface IReader
    {
        /// <summary>
        /// Extract the input msg file to the given output folder
        /// </summary>
        /// <param name="inputFile" />The msg file
        /// <param name="outputFolder" />The folder where to extract the msg file
        /// <returns>String array containing the 
        /// message body and its (inline) attachments</returns>
        [DispId(1)]
        string[] ExtractToFolder(string inputFile, string outputFolder);

        /// <summary>
        /// This gives the 
        /// </summary>
        /// <returns>
        [DispId(2)]
        string GetErrorMessage();
    }

    [Guid("E9641DF0-18FC-11E2-BC95-1ACF6088709B")]
    [ComVisible(true)]
    public class Reader : IReader
    {
        ......
    } 

Example Program

Below, you see some screenshot from a test program that is included in the source files. This screenshot shows you an MSG file that is written to a temporary folder.

Image 1

Single and double byte language support.

Image 2

Task and follow up support.

Image 3

Appointment support.

Image 4

Contact(card) support.

History

  • 2014-07-06 Version 1.7

    • Added support for signed MSG files
    • Added support for EML (Mime 1.0 encoded) files
    • Fixed issue with double quotes not getting parsed correctly from HTML embedded into RTF
  • 2014-06-12 Version 1.6

    • Fixed bug in E-mail CC field that also went into the BCC field
    • Fixed bug in appointment mapping
    • Added AllAttendees, ToAttendees and CCAttendees properties to Appointment class
    • Added MSGMapper tool, with this tool properties from msg files can be mapped to extended file properties (Windows 7 or higher is needed for this)
    • Added Outlook properties to extended file properties mapping for:
      • E-mails
      • Appointments
      • Tasks
      • Contacts
  • 2014-04-29 Version 1.5
    • Added Outlook contact(card) support
    • Made properties late binding
  • 2014-04-21 Version 1.4
    • Full support for MAPI named properties
    • Added support for OLE attachments
    • Added Outlook Appointment support
    • Added Outlook Sticky notes support
    • Added support so that OLE images in RTF files get rendered correctly after conversion to HTML (tried to be as close as possible to how it looks in Outlook).
    • Extended E-mail support with RTF to HTML conversion. When there is no HTML body part and there is an RTF part, then this one gets converted to HTML.
    • Moved all language specific things to a separate class so that this component can be easily translated to other languages. Please send me the translations if you do this.
    • Fixed a lot of bugs and made speed improvements
  • 2014-03-30 Version 1.3
    • Completed implementing Outlook flag system on E-mail MSG object
    • Made all the MAPI functions private
    • Moved all language related things into a separate file so that it is easy to translate
    • Moved all MAPI constants to a separate file and added comment
    • Removed some unused classes
    • Cleaned up the code
    • Added option to convert attachment locations to hyperlinks
    • Fixed remove < and > when there is no e-mail address and only a displayname
    • Fixed issue with Sent On and Received on not being parsed as a DateTime values
    • Added support for categories in msg files (Outlook 2007 or later)
    • Fixed issue with e-mail address and displayname being swapped
    • Added RtfToHtmlConverter class (to convert RTF to HTML)
    • Added Message Type property so that we know what kind of MSG object we have
  • 2014-03-20 Version 1.2.1
    • Added support for double byte char sets like Chinese
  • 2014-03-18 Version 1.2
    • Fixed an issue with the Sent On (this was not set to the local timezone)
    • Added Received On, this is now added to the injected Outlook header
    • Added using statement to message object
    • Made some Native methods internal
    • Fixed some disposing issues, this was done more than once on some places
    • Refactored the code so that everything was correct according to the Microsoft code rules
  • 2014-03-06 Version 1.1
    • Added support for special characters like German umlauts, they are parsed out of the HTML text that is embedded inside the RTF
    • The RTFBody was loaded 4 times instead of once
    • A CC was always added even when there was no CC (the To was taken in that case)
    • Fixed some minor issues and cleaned up the code
  • 2014-01-16
    • First release

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Netherlands Netherlands
Programming since I was a kid. Started on the Commodore 64 with BASIC. Since then I used programming languages like Turbo Pascal, Delphi, C++ and Visual Basic 6.

Now a days I do a lot of programming in C# with underlying databases like MS SQL

Comments and Discussions

 
QuestionGet plain text from html? Pin
LoneSurvivor25-Mar-14 4:07
LoneSurvivor25-Mar-14 4:07 
AnswerRe: Get plain text from html? Pin
Kees van Spelde25-Mar-14 4:19
professionalKees van Spelde25-Mar-14 4:19 
QuestionJust as notification ... your 1.2.1 uploads, the ZIP files are corrupted. Pin
Martin081524-Mar-14 0:26
professionalMartin081524-Mar-14 0:26 
AnswerRe: Just as notification ... your 1.2.1 uploads, the ZIP files are corrupted. Pin
Kees van Spelde24-Mar-14 1:45
professionalKees van Spelde24-Mar-14 1:45 
AnswerRe: Just as notification ... your 1.2.1 uploads, the ZIP files are corrupted. Pin
Kees van Spelde24-Mar-14 8:08
professionalKees van Spelde24-Mar-14 8:08 
GeneralWrong Type Pin
Amir Mohammad Nasrollahi22-Mar-14 6:45
Amir Mohammad Nasrollahi22-Mar-14 6:45 
GeneralRe: Wrong Type Pin
Kees van Spelde22-Mar-14 7:35
professionalKees van Spelde22-Mar-14 7:35 
GeneralRe: Wrong Type Pin
Amir Mohammad Nasrollahi22-Mar-14 7:44
Amir Mohammad Nasrollahi22-Mar-14 7:44 
Good work!! Thumbs Up | :thumbsup: Cool | :cool:
GeneralRe: Wrong Type Pin
Kees van Spelde22-Mar-14 8:03
professionalKees van Spelde22-Mar-14 8:03 
BugFileManager.CheckForSlash Pin
NLHenkie20-Mar-14 10:35
NLHenkie20-Mar-14 10:35 
GeneralRe: FileManager.CheckForSlash Pin
Kees van Spelde20-Mar-14 10:45
professionalKees van Spelde20-Mar-14 10:45 
GeneralRe: FileManager.CheckForSlash Pin
Kees van Spelde24-Mar-14 8:10
professionalKees van Spelde24-Mar-14 8:10 
Questionasp.net support added Pin
n41ng3-Mar-14 17:15
n41ng3-Mar-14 17:15 
AnswerRe: asp.net support added Pin
Kees van Spelde3-Mar-14 22:44
professionalKees van Spelde3-Mar-14 22:44 
GeneralRe: asp.net support added Pin
n41ng5-Mar-14 15:25
n41ng5-Mar-14 15:25 
GeneralRe: asp.net support added Pin
Kees van Spelde6-Mar-14 8:49
professionalKees van Spelde6-Mar-14 8:49 
GeneralThank you - I made some improvements Pin
anli-ger15-Feb-14 6:44
anli-ger15-Feb-14 6:44 
GeneralRe: Thank you - I made some improvements Pin
Kees van Spelde15-Feb-14 11:48
professionalKees van Spelde15-Feb-14 11:48 
GeneralRe: Thank you - I made some improvements Pin
LoneSurvivor5-Mar-14 4:09
LoneSurvivor5-Mar-14 4:09 
AnswerRe: Thank you - I made some improvements Pin
LoneSurvivor5-Mar-14 5:48
LoneSurvivor5-Mar-14 5:48 
GeneralRe: Thank you - I made some improvements Pin
Kees van Spelde6-Mar-14 8:47
professionalKees van Spelde6-Mar-14 8:47 
BugRe: Thank you - I made some improvements Pin
LoneSurvivor25-Mar-14 0:43
LoneSurvivor25-Mar-14 0:43 
GeneralRe: Thank you - I made some improvements Pin
Kees van Spelde25-Mar-14 1:06
professionalKees van Spelde25-Mar-14 1:06 
GeneralRe: Thank you - I made some improvements Pin
LoneSurvivor25-Mar-14 3:13
LoneSurvivor25-Mar-14 3:13 
AnswerRe: Thank you - I made some improvements Pin
LoneSurvivor25-Mar-14 4:54
LoneSurvivor25-Mar-14 4:54 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.