I have built a script that analyze my outlook inbox mails using Python + Exchangelib. It screens my email inbox e.g. from the last 2 days with some conditional statements and the output would be all emails that need my attention and its attributes (including Conversation-ID and Email-ID).
So far so good.
Now I'd like to open/display one of the emails from my script on my local email client (Outlook).
I found out that there is no possibility to use Exchangelib to display it on Outlook, but is that really the case? What would be the method for that?
If so, what are my other options? The solution should make use the email-attributes from my screening script (e.g. Conversation-ID or Email-ID) as a pointer to the emails to be opened on Outlook.
How about O365 (which method?) or pywin32(MailItem.display())? The pros and cons? As I understand it, pywin32 is not applicable on Unix system.
Thanks for any inputs:-)