Hi,
I am trying to perform a reply all to an email message that I have passed into
my python script.
import win32com.client
__OUTLOOK = win32com.client.Dispatch("Outlook.Application").GetNamespace("MAPI")
__MSG = __OUTLOOK.OpenSharedItem(sys.argv[1])
emailBody = __MSG.Body
print(emailBody)
r
Ahmed Matar via python-win32 wrote:
I am trying to perform a reply all to an email message that I have
passed into my python script.
...
#what I would like to do now is do a “Reply all” with my reponse being
“ResponseToEmail”
Any ideas if this is possible?
Sure, it's possible, but you h
Thanks for the link. That method did not seem to work on Windows Server
2016.
I have found a solution that seems to work correctly, if not very
efficiently, on Windows 10.
Since I doubt that Windows Server machines will be called on very often to
build pywin32, I am leaving the script with a little