Detect when 'New E-mail' or 'Send' button is clicked in outlook

0

I'm trying to write up a python script that could detect when a button ('New E-mail' or 'Send') is clicked in Microsoft Outlook - > and then do something if that is true.

Is there any way that Windows logs something like this which I can use a python script to detect? Any better way of doing this (preferably still using python)? Thanks.

user1165419

Posted 2016-05-22T11:39:18.723

Reputation: 1

Can you explain the end result? It sounds like simple rules would already do what you want, and python is not at all required. – LPChip – 2016-05-22T12:01:49.423

You can definitely use Rules Wizard to run a script (not Python, but VBA for Outlook) when an e-mail goes into the Outbox. It wouldn't necessarily be the Send button as you can also use Ctrl+Enter to Send. – Sun – 2016-05-23T16:05:09.147

No answers