gal

How to programatic filter global address list in outlook with Python?

How to programatic filter global address list in outlook with Python? Question: I found a way to query all global address in outlook with python, import win32com.client import csv from datetime import datetime # Outlook outApp = win32com.client.gencache.EnsureDispatch("Outlook.Application") outGAL = outApp.Session.GetGlobalAddressList() entries = outGAL.AddressEntries # Create a dateID date_id = (datetime.today()).strftime(‘%Y%m%d’) # Create empty list …

Total answers: 2