Extract sender's email address from Outlook Exchange in Python using win32

13,785

Solution 1

Firstly, your code will fail if you have an item other than MailItem in the folder, such as ReportItem, MeetingItem, etc. You need to check the Class property.

Secondly, you need to check the sender email address type and use the SenderEmailAddress only for the "SMTP" address type. In VB:

 for each msg in all_inbox
   if msg.Class = 43 Then
     if msg.SenderEmailType = "EX" Then
       print msg.Sender.GetExchangeUser().PrimarySmtpAddress
     Else
       print msg.SenderEmailAddress 
     End If  
   End If
 next

Solution 2

I am just modifying the program given above in Python.

from win32com.client import Dispatch
outlook = Dispatch("Outlook.Application").GetNamespace("MAPI")
inbox = outlook.GetDefaultFolder("6")
all_inbox = inbox.Items
folders = inbox.Folders

for msg in all_inbox:
       if msg.Class==43:
           if msg.SenderEmailType=='EX':
               print msg.Sender.GetExchangeUser().PrimarySmtpAddress
           else:
               print msg.SenderEmailAddress

This will print out all the sender's email address in your inbox folders only.

Share:
13,785
python
Author by

python

Updated on June 28, 2022

Comments

  • python
    python almost 2 years

    I am trying to extract the sender's email address from outlook 2013 using win32 package in python. There are two kinds of email address type in my Inbox, exchange and smtp. If I try to print the the sender's email address of Exchange type, I am getting this:

    /O=EXCHANGELABS/OU=EXCHANGE ADMINISTRATIVE GROUP(FYDIBOHF23SPDLT)/CN=RECIPIENTS/CN=6F467C825619482293F429C0BDE6F1DB-
    

    I have already gone through this link but couldn't find a function through which I can extract the smtp address.

    Below is my code:

    from win32com.client import Dispatch
    outlook = Dispatch("Outlook.Application").GetNamespace("MAPI")
    inbox = outlook.GetDefaultFolder("6")
    all_inbox = inbox.Items
    folders = inbox.Folders
    for msg in all_inbox:
       print msg.SenderEmailAddress  
    

    Currently all the Email Address are coming like this:

    /O=EXCHANGELABS/OU=EXCHANGE ADMINISTRATIVE GROUP(FYDIBOHF23SPDLT)/CN=RECIPIENTS/CN=6F467C825619482293F429C0BDE6F1DB-
    

    I found a solution to this in VB.net link but don't know how to rewrite the same thing in Python.

  • python
    python almost 9 years
    Thanks brother :) you saved so much of my time.
  • FaCoffee
    FaCoffee almost 6 years
    In my case, this failed with AttributeError: 'NoneType' object has no attribute 'PrimarySmtpAddress'. How can there be no PrimarySmtpAddres?
  • dravid07
    dravid07 over 4 years
    Most probably, your folder is not containing any emails at the time of testing.