Skip to content

Instantly share code, notes, and snippets.

View mohanramselvaraj's full-sized avatar

mohanramselvaraj

View GitHub Profile
@ITSecMedia
ITSecMedia / outlook_email.py
Last active December 26, 2023 16:47
Python: Create an Email with Outlook
# https://itsec.media/post/python-send-outlook-email/
import win32com.client
from win32com.client import Dispatch, constants
const=win32com.client.constants
olMailItem = 0x0
obj = win32com.client.Dispatch("Outlook.Application")
newMail = obj.CreateItem(olMailItem)
newMail.Subject = "I AM SUBJECT!!"