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
-1
votes
3 answers

Edit Outlook locally saved .msg body by replacing text in VBA

Good afternoon, I have an Outlook .msg email saved at a local folder in my computer. Is there any way I can replace the word "AAAA" in the body with any word I want in VBA? Is there any way I can change the To: field? The goal is to run an Excel…
mikizas
  • 331
  • 5
  • 16
-1
votes
2 answers

How do I attach an attachment from msg to a Mime to send as email in Python?

I want to open a .msg file, take the attachments, and send them to a specific mail address. I use extract_msg, I don't seem to be able to attach only the attachments in the .msg to my mail. What I have so far: mail = f"{path}/{attachment}" msg =…
KVG
  • 59
  • 8
-1
votes
4 answers

Converting msg to pdf in python

I really need your help in solving a problem! Apparently, my knowledge is not sufficient to find a solution. So, I have some msg files that I have already created and saved. Now I need to write a function that can help me create pdfs from msg files…
bella
  • 93
  • 1
  • 7
-1
votes
1 answer

jasper reports - msg function not accepting more than 4 parameters including pattern

So it seems i can't create a string from properties file with more than 3 parameters plus the pattern: msg(str("lifeletter."+$P{COD_DOC}+".message"),$P{PR_YEAR},$P{MODULE_NAME},$F{benefit_value},$F{accumulated_value}) I get this error: The method…
Maxrunner
  • 1,955
  • 4
  • 24
  • 41
-1
votes
1 answer

Need sub for Windows 10 Home msg.exe

Windows 10 Home edition pulled msg.exe. I need a sub that I can use to pop up message to the local user, NOT THE NETWORK, from a batch script. Many thanks, -T
Todd
  • 976
  • 4
  • 10
-1
votes
1 answer

".msg" font colour different on Mac and Windows

So I have this email template that I'm creating to be sent out. I tried sending the mail to myself first to check if it looks fine, on a Mac it looks perfectly fine with the right colours for the text and formatting. But when i open the same ".msg"…
Rajveer Singh
  • 433
  • 5
  • 20
-1
votes
1 answer

MSG with IP list doesn't work

I have a problem with an IP list for the MSG command in PowerShell. I have something like this: msg (Get-Content -Path C:\Users\user\Desktop\ip_list.txt) (Get-Content -Path C:\Users\user\Desktop\text4.txt) In ip_list.txt there is…
RHMojo
  • 3
  • 1
-1
votes
1 answer

Transfer data from .msg files to excel

i got a lot of .msg files which contain information of an mail-form (name, telefon, mail etc.) of my website all saved in one folder. I'm trying to transfer all the information of the .msg-files into one excel file. As there are a lot of .msg files…
manu
  • 13
  • 4
-2
votes
1 answer

How can I develop an app that can send a text message?

Possible Duplicate: Using the native sms app to send an sms without launching itself I have noticed many apps have the ability to send a text message to any phone, usually with codes or links or something. Foursquare for example, when I signed…
barukari
  • 3
  • 1
  • 4
-4
votes
1 answer

Windows SendMessage() msg codes

I use this code: [DllImport( "User32.dll", EntryPoint = "SendMessage" )] private static extern int SendMessage( IntPtr hWnd, int msg, IntPtr wParam, IntPtr lParam ); This code sends a message to a specific HWND. But I cannot find a list of "msg"…
1 2 3
18
19