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.
Setup
Install pywin32 with pip.
1 | pip install pywin32 |
Python Outlook Email example
1 | import win32com.client |
Python Outlook Meetings example
1 | def sendMeeting(): |
Python Outlook Recurring Meetings example
1 | def sendRecurringMeeting(): |