Skip to content Skip to sidebar Skip to footer

Python Win32 Can't Read Outlook Email Body's

Im trying to use win32 module for python and get the body of my email message. However whenever I try to get it i get an error for any email body I try to get. I am able to get the

Solution 1:

Not 100% sure, but perhaps body should use a capital B as it seems to be referencing a C# property.

https://msdn.microsoft.com/en-us/library/microsoft.office.interop.outlook._mailitem.body.aspx

So: body_content = message.Body

Post a Comment for "Python Win32 Can't Read Outlook Email Body's"