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? ...
4
votes
1answer
193 views
Delphi and MSG file
How to display an Outlook msg file using Delphi 2010? Is there a way to wrap Outlook app and open it within Delphi?
Thanks
2
votes
2answers
378 views
How to print .MSG into PDF
I have 1000 emails (in .msg format) and I'd like to convert those to PDF files.
Reading .MSG file has already been asked here.
But the problem for me is to print .msg emails as you do from "File -> ...
2
votes
2answers
326 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
467 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
1k 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
1answer
80 views
Programmatically saving Outlook emails in .msg format on my desktop
How can I save emails to my local desktop folder in Microsoft Outlook 2007? I need a plugin or can you help me in writing a plugin with some suitable code as reference. I don't have permission to ...
0
votes
1answer
25 views
Outlook msg format - how to construct __nameid_version1.0 stream
I have been working with an open-source project called pstsdk up on codeplex. My current task is to generate msg files from the pst. Mostly I have been successful but to make it complete I want to be ...
0
votes
0answers
46 views
Solutions to display mail (MSG-file) in Swing application?
I am looking for a solution to display msg-files saved from outlook in my Swing application. There seem to be plenty of solutions for parsing and writing msg-files, but none to actually display them ...
0
votes
1answer
355 views
Java: How to create an EML or MSG file with attachment that can be opened in Outlook
I have a struts-action, and when that action is called i would like to create and return a simple eml or msg file that can be opened in outlook.
This is can do just fine with a basic email-message. I ...
0
votes
1answer
424 views
How to create an Outlook msg file from a web service?
I'm trying to create an outlook msg file from some code running on a webserver. My (pseudo) code does the following:
Outlook.Application application = new Outlook.Application();
Outlook.MailItem ...
0
votes
1answer
388 views
Opening Mime content in Outlook
I'm looking for a way to get outlook to open a Mime message? It should be possible I just can't seem to find anywhere with examples on how to do it...
Currently we get the mime content and then use ...
0
votes
2answers
461 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
167 views
Reading .msg on Mac
Is there any tool or library that allows to read Outlook's MSG files on Mac? I don't mind having to code a little - i.e. a library that works with C(++)/PHP/Python/Ruby etc. would be fine, but I don't ...
0
votes
3answers
1k views
How do I read a .msg Outlook attachment in Outlook VBA/Scripting?
I've got a script that's trying to open text attachments and append them to the message body. I have it working for text documents but I ideally need it working for .msg attachments too.
At the ...
0
votes
1answer
337 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 ...
0
votes
2answers
708 views
Automate collection of data from outlook .msg files to excel field
My firewall sends me a notifcation to my email every time a policy is violated.
I have about 2500 emails in .msg format that I want to put into one excel document.
Basically I am looking for a way ...
0
votes
2answers
797 views
MAPI: Format of PR_SEARCH_KEY
Does anyone know the format of the MAPI property PR_SEARCH_KEY?
The online documentation has this to say about it:
The search key is formed by
concatenating the address type (in
uppercase ...
0
votes
3answers
3k views
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 ...