I am trying to use python to go through outlook and get all emails by a sender. I have looked but can\'t find out how to do this. I can get an email by subject and return th
It looks like you're looking for the SenderEmailAddress property.
You could go through your messages for a particular sender via:
for m in messages: if m.SenderEmailAddress == 'some_sender@somewhere.com': print(m)