How to open .eml files using Outlook MAPI in C#?

前端 未结 4 561
眼角桃花
眼角桃花 2021-01-12 19:48

I have a C# application that reads .msg files and extracts the body and the attachments. But when I try to load a .eml file the application crashes. I am loading the files l

相关标签:
4条回答
  • 2021-01-12 20:01

    Although Outlook can open EML files, there is no way to do it programatically only with VBA. So I created this VBA macro which loops through some folder and opens each EML file using SHELL EXEC. It may take a few milliseconds until Outlook opens the EML file, so the VBA waits until something is open in ActiveInspector. Finally, this email is copied into some chosen folder, and (in case of success) the original EML file is deleted.

    See my complete answer (and code) here: https://stackoverflow.com/a/33761441/3606250

    0 讨论(0)
  • 2021-01-12 20:07

    In order to create a MailItem from a .eml file you can use the following two steps: at first you open an outlook process instance and then you create the MailItem with the Outlook API.

      string file = @"C:\TestEML\EmlMail.eml";
      System.Diagnostics.Process.Start(file);
      Outlook.Application POfficeApp = (Outlook.Application)Marshal.GetActiveObject("Outlook.Application");  // note that it returns an exception if Outlook is not running
      Outlook.MailItem POfficeItem = (Outlook.MailItem)POfficeApp.ActiveInspector().CurrentItem; // now pOfficeItem is the COM object that represents your .eml file
    
    0 讨论(0)
  • 2021-01-12 20:21

    CreateItemFromTemplate only works with the MSG/OFT files. Fot the EML files you will either need to parse the file explicitly in your code or use a third party library (such as Redemption):

    The following code will create an MSG file and import an EML file into it using Redemption (RDOSession object):

      set Session = CreateObject("Redemption.RDOSession")
      Session.MAPIOBJECT = outlookApp.Session.MAPIOBJECT
      set Msg = Session.CreateMessageFromMsgFile("C:\Temp\temp.msg")
      Msg.Import "C:\Temp\test.eml", 1024
      Msg.Save
      MsgBox Msg.Subject
    

    You can then use the message (RDOMail) to access it various properties (Subject, Body, etc.)

    0 讨论(0)
  • 2021-01-12 20:23

    Try this sample code Easily Retrieve Email Information from .EML Files

    0 讨论(0)
提交回复
热议问题