Emails and Appointments/Meetings with Outlook and Python

1 · Roman Soldatow · June 17, 2018, 6:47 p.m.
If you would like to send Emails or Meetings or even Recurring meeting with Outlook, you could do it easily with Python.We will use the pywin32 library for that, which is a python extension for Win32 API and provides ability to create and use COM objects.It will use your Outlook, and you don’t need to authenticate or setup the SMTP.SetupInstall pywin32 with pip.12pip install pywin32pip install pypiwin32Python Outlook Email example12345678910import win32com.clientoutlook = win32com.client.Dispatc...