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
2
votes
0 answers

How to get the table tag of an .msg file?

I already get the html code of my msg file as text. Now I want to get only the table tag of that html file and put it on my default.aspx div tag. I have already tried: div1.InnerText = (trimmed html code of msg file); and div1.InnerHTML = (trimmed…
joem824
  • 59
  • 1
  • 10
2
votes
1 answer

Outlook MSG to MimeMessage in Java

Is there any way (open source way) to convert Outlook .msg to MimeMessage so that someone can work with msg files in Java? There is a library named MsgParser developed for working with .msg files but this library does not give an option to convert…
newzad
  • 706
  • 1
  • 14
  • 29
2
votes
2 answers

QNX MsgReceive Pulse

I have a problem because I don't know how _pulse receiving works. If I have my data struct typedef struct _my_data { msg_header_t hdr; int data; } my_data_t; and I am receiving only my msg I cant tell if it is a pulse my_data_t msg; ... rcvid =…
user3613919
  • 777
  • 1
  • 7
  • 17
2
votes
1 answer

Python olefile extract text of body

I been trying to extract the text content of a msg file in the disk using python module olefile. But getting AttributeError: OleFileIO instance has no attribute 'read'. Tried to read olefile API but could not get any clue. Thank you. import…
2
votes
0 answers

Converting RTF to HTML using Java - tweaking for Unicode

I am trying to display .msg files (i.e. Outlook emails) in my Web Application using JSP. I am using the parser http://auxilii.com/msgparser/ which extracts the body content of the email which is stored as RTF (sometimes or always - I haven't…
gordon613
  • 2,770
  • 12
  • 52
  • 81
2
votes
2 answers

Using VB Script to read contents of .msg file

I have a folder with thousands of Outlook .msg files. I'd like to know if it's possible to write a VB Script that can read the sender and receiver from each file, and move the .msg file to a folder based on this info? Thanks
gers1978
  • 21
  • 1
  • 3
2
votes
1 answer

how to read msg file with R

I use R a lot to process the financial data, e.g. cds spreads, correlation of tranche data, time series... ... Now I have periodic data update from bloomberg via email, and all the data are text only in the email (NOT as an attachment file), I wanna…
2
votes
1 answer

Renaming .msg files using Powershell

We tend to drag and drop messages from outlook into Windows Explorer so I need to rename the default message filename so that the files are searchable/readable from Explorer. I have managed to put together the following code that almost renames an…
Bertie
  • 1,163
  • 3
  • 14
  • 26
2
votes
1 answer

Read bookmarks in outlook MSG file with C#

My goal is to somehow be able to read bookmarks in an outlook .msg file, then replace them with a different text. I want to do this with C#. I know how to access the body and change the text, but was wondering if there was a way to access directly…
Mana
  • 1,925
  • 6
  • 39
  • 55
2
votes
2 answers

win32 main loop interval issue C++

I'm making a keylogger that logs key strokes (duh..). Now when I've implemented the basic keylogger in C++, I wanted to add a new feature to the application: I want it to mail the logs to my email. So far so good, I found this open source email…
2
votes
1 answer

ActiveX Control to view outlook msg file in C# Winforms

I am using C# Winform in .NET 3.5 in an application. I looking for a third party ActiveX control, which can show *.msg file in the viewer. Is anybody aware, such kind of viewer, which will support this. Thanks, Nizam.
Nizam
  • 21
  • 1
2
votes
3 answers

SQL Query Error

I'm stuck to this error: Msg 8120, Level 16, State 1, Line 2 Column 'Subjects.off_CODE' is invalid in the select list because it is not contained in either an aggregate function or the GROUP BY clause. I don't know what is wrong with this…
eaponz
  • 574
  • 1
  • 16
  • 32
2
votes
2 answers

How do I open local .msg files in web browser (html format) and display embedded pictures

I know how to open local .msg files in webbrowser in html format. The problem is when the .msg has embedded pictures, the only thing that appears is a blank space ("picture not found") where it is supposed to be. If I open the .msg file in Outlook,…
1
vote
1 answer

How to find the code page ID of an Outlook message file (.msg)

I want to get the Code Page ID that was used when writing an email (outlook .msg file). The property that holds this information is PidTagMessageCodepage. But I cannot find how to access it with C++. The message file (.msg) that I am trying to read…
Niroshan
  • 2,064
  • 6
  • 35
  • 60
1
vote
1 answer

Python Email, how to delete/refresh 'To' field in a message

I'm trying to write a python rogram to send email to multiple addresses. Each time the message is the same except for the recipient's address. I thought i could just change the msg['To'] in the loop, for email in emaillist ... msg['To'] =…
vincent_zhang
  • 93
  • 1
  • 6