I have a .msg file on my filesystem. With powershell I can open a Outlook window with the message simply like this:
Invoke-Item "MY MAIL.msg"
How to change the subject and forward it to a given address via Powershell?
Thanks in advance
|
I have a .msg file on my filesystem. With powershell I can open a Outlook window with the message simply like this:
How to change the subject and forward it to a given address via Powershell? Thanks in advance |
|||||
|
|
You could try something like this, works with outlook 2010
|
|||||||||||||||
|
|
In PowerShell 2.0 there is a Send-MailMessage cmdlet that allows you to attach files, specify a subject and a recipient e.g.:
Not sure how that plays with .msg files but you might give it a try. |
|||
|
|