Questions tagged [msg]

"msg" is the extension of Microsoft Outlook message files

MSG is the extension of Microsoft Outlook message files, that is a proprietary format different from the more popular EML files.

You should use the msg tag to identify questions related to Microsoft Outlook Messages (.msg) file processing.

280 questions
54
votes
7 answers

Parsing outlook .msg files with python

Looked around and couldn't find a satisfactory answer. Does anyone know how to parse .msg files from outlook with Python? I've tried using mimetools and email.parser with no luck. Help would be greatly appreciated!
Michael
  • 7,087
  • 21
  • 52
  • 81
22
votes
4 answers

How to get the MIME Type of a .MSG file?

I have tried these ways of finding the MIME type of a file... Path source = Paths .get("C://Users/akash/Desktop/FW Internal release of MSTClient-Server5.02.04_24.msg"); System.out.println(Files.probeContentType(source)); The…
CoderNeji
  • 2,056
  • 3
  • 20
  • 31
18
votes
7 answers

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? I want to extract From, To, CC and BCC fields.…
huseyint
  • 14,953
  • 15
  • 56
  • 78
17
votes
7 answers

Message box in jQuery

Can any one suggest the code for creating message box in jQuery?
ashish
  • 197
  • 1
  • 1
  • 3
13
votes
4 answers

Parsing .msg files in JavaScript

Does anybody know of any JavaScript libraries that will read/parse a microsoft .msg file. I am writing a system that requires a viewer to dispay .msg files that have been stored on a server. I will probably also have to do .eml in the future too. I…
Wongadob
  • 141
  • 1
  • 1
  • 4
12
votes
1 answer

Reading Composite Document File V2 Document (.msg) files in ubuntu

I have a large dump of data from an outlook email account that comes entirely in .msg files. A quick call to ubuntu's file method revealed that they were Composite Document File V2 Documents (whatever that means). I would really like to be able to…
Slater Victoroff
  • 21,376
  • 21
  • 85
  • 144
11
votes
6 answers

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 MailMessage as .msg file: public static void…
Gaby
  • 2,923
  • 4
  • 38
  • 52
7
votes
0 answers

Outlook HTML msg format from Javascript

Is there any pure open source solution to parse Outlook msg format directly from Javascript and or NodeJS? I believe there is a need to support Outlook msg format in nodemailer, which at least parses eml correctly. So far I could not find a better…
Nestor Urquiza
  • 2,821
  • 28
  • 21
7
votes
1 answer

How to use msgbox in R

How can I display a message box in R ? I'm looking for something similar to msgbox in VBA, so I can for example alert the user about a problem. Additionally I would like to allow some user interaction. So for example I could ask the user what day…
dekio
  • 810
  • 3
  • 16
  • 33
5
votes
4 answers

What's the best library for reading Outlook .msg files in Java?

I would like to read the text and binary attachments in a saved Outlook message (.msg file) from a Java application, without resorting to native code (JNI, Java Native Interface). Apache POI-HSMF seems to be in the right direction, but it's in very…
muriloq
  • 2,692
  • 5
  • 29
  • 32
5
votes
1 answer

Convert MSG email to PDF file in C#

I'm using GemBox.Email and GemBox.Document to convert emails to PDF. This is my code: static void Main() { MailMessage message = MailMessage.Load("input.eml"); DocumentModel document = new DocumentModel(); if…
NixonUposseen
  • 53
  • 3
  • 12
5
votes
2 answers

Delphi and MSG file

How do I display an Outlook message file using Delphi 2010? Is there a way to wrap an Outlook app and open it within Delphi?
user645976
4
votes
3 answers

Parsing msg/eml files with Python 2.7

Is there a library that can parse msg or eml files? I wrote a script that parses an email once it is converted to a txt file, but i cannot find an email client that allows me to easily drag-n-drop emails from the gui into a folder as a txt file (if…
D3l_Gato
  • 1,297
  • 2
  • 17
  • 25
4
votes
1 answer

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 files. But when calling method OpenSharedItem a get…
pchot
  • 380
  • 3
  • 14
4
votes
2 answers

which mime type can I use for .MSG file using FILE object

I have tried to get MIME-type from the FILE which is uploaded earlier but, it is return ''. Is there any library or code for getting file-type of the outlook files in Angular. ex: for images it is showing 'images/png'. please have a look. for .msg…
1
2 3
18 19