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
4
votes
1 answer

read outlook msg files with node js

I'm trying to read msg-files that are exported from outlook. Is there a way of reading the original recipient in the msg-file with nodejs? (I don't have online office365, I'm talking about files on disk). As a rare exception, I couldn't find a npm…
Chris
  • 2,296
  • 4
  • 27
  • 46
4
votes
2 answers

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 object contains the following…
Jürgen Steinblock
  • 30,746
  • 24
  • 119
  • 189
4
votes
0 answers

Conversion one outlook .msg file to .pdf after drag and drop in C#

I'm writing a small program for pdf edit. This program may to print label in one specific place on first pdf page. Files which are edit are select by drag and drop. Everything is fine, but I need to write function which convert file to pdf before…
4
votes
2 answers

how to read .msg file in php

I want to read Outlook .msg email with PHP language and I don't know how to read it with simple file read function. I have enabled Mailparse extension in my Linux system and by using it I can read the .eml files correctly but not .msg. Could you…
Vinod
  • 67
  • 2
  • 7
4
votes
1 answer

Python: Does any one knows the Received mail date Parameter for msg Outlook file?

I am working to parse the msg (Outlook mail) file using python. I found number of attributes shown in to the code that I did so far, I did following code for that, import win32com.client outlook =…
jaymin581
  • 165
  • 3
  • 15
4
votes
1 answer

Internal addresses are missing after MSG to EML conversion using Redemption

I am currently evaluating the redemption library for converting MSG files to EML files. RDOSession session = new RDOSession(); RDOMail msg = session.GetMessageFromMsgFile(msgFile); msg.SaveAs(emlFile, rdoSaveAsType.olRFC822); So far Redemption is…
Fabian Barney
  • 14,219
  • 5
  • 40
  • 60
4
votes
1 answer

Generate .msg file for Outlook

Is there a way to have Javascript/jQuery (or any other web-based language) generate a .msg file that also has an attachment? I am trying to make it so when a user clicks a button, it downloads a .msg file that has Subject/Body filled out and has a…
Bijan
  • 7,737
  • 18
  • 89
  • 149
4
votes
1 answer

Mime type "application/CDFV2-corrupt" for Outlook msg file using PHP's finfo_file

I did a little research on Outlook msg files and I expected the mime type to be application/vnd.ms-outlook. But when I use finfo_file(), I get application/CDFV2-corrupt. I've since tried it on two different servers (my local Centos box and my…
user1032531
  • 24,767
  • 68
  • 217
  • 387
4
votes
1 answer

3rd party utility to convert Outlook MSG files to EML files

I have an application that allows people to attached files to records. Some users are uploading emails that relate to the record in question. All fine and dandy. However some users are using MS Outlook and are uploading MSG files and other users are…
Gordon Copestake
  • 1,616
  • 4
  • 21
  • 37
3
votes
2 answers

How to check if registered variable has a particular pattern in ansible?

So I want to check if nginx syntax is ok - name: check if syntax is ok on nginx shell: nginx -t register: result then I want to use that with the service module with "when:" conditional to run the service module to reload nginx "when:" "result"…
CzipO2
  • 403
  • 1
  • 6
  • 15
3
votes
1 answer

Parse body of msg (email) file

I need to parse the body of emails to get the contents of a table out of each email. I would like to use PowerShell to do this. I have tried this code: Get-ChildItem "C:\Users\mmartindale.NTSERVER\Desktop\delreg temp\msg" -Filter *.msg | …
user2642759
  • 33
  • 1
  • 6
3
votes
2 answers

Converting EML's to MSG's

We have a webapplication that allows users to view emails in a table and double click on them to open them in outlook. For that we use the (simplified) piece of code: var email = Session.OpenSharedItem(filename) as MailItem; This works for .msg…
Antoon Meijer
  • 89
  • 1
  • 9
3
votes
1 answer

How to open ".msg" (Microsoft Outlook Message) file in Objective-C or in C++

I am currently developing a business logic for iDevices, where I need to open and display .msg (Microsoft Outlook Message) file. I have already found some answers in internet, but I am expecting concrete answer rather abstract. Either a way to open…
Goppinath
  • 10,569
  • 4
  • 22
  • 45
3
votes
2 answers

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).
Nikolaos
  • 1,449
  • 2
  • 15
  • 19
3
votes
1 answer

change msg property to new value with rsyslog

I have this rsyslog configuration: $template f_x,"/path/%programname%.%$YEAR%%$MONTH%%$DAY%%$HOUR%.log" if $programname == 'xyz' and $msg contains 'Hello World' or $msg contains 'FATAL' then $msg = 'Starting xyz' ?f_x &…
x13
  • 327
  • 1
  • 8
  • 18
1
2
3
18 19