Plain text email - israel-dryer/Outlook-Python-Tutorial GitHub Wiki
You've installed Outlook and the required Python libraries. You are now ready to begin this journey by creating a plain-text email message!
Imports and Dispatch
The first step is to import the required library and dispatch an instance of Outlook.
import win32com.client as client
outlook = client.Dispatch('Outlook.Application')
Create a Mail Item
Now that you have an Outlook instance, you can create a mail item. Other than mail items, there are many other items that you can create. You can find the enumerations on Microsoft's website.
While it's not necessary, we're going to use the Display
method to open the message window so that we can see the changes in Outlook as we're making them.
message = outlook.CreateItem(0) # 0 is the code for a mail item (see the enumerations)
message.Display()
Adjusting message properties
After creating a mail item, you are ready to start setting its properties.
The message recipients are set with the To
, CC
, and BCC
properties.
The Subject
is self explanatory.
There are two options for the main text of the email:
Body
is the property for a plain-text formatted email bodyHTMLBody
is the property for an html formatted email body
message.To = '[email protected]'
message.CC = '[email protected]'
message.BCC = '[email protected]'
message.Subject = 'Happy Birthday"'
message.Body = 'Wishing you a very happy birthday!!'
Other settings
You can also set the SentOnBehalfOfName
property if you have permission to send on behalf of another party.
message.SentOnBehalfOfName = '[email protected]'
Sending and Saving
When you are ready to save or send, you can use the Save
method to save the message to the drafts folder. The Send
method will send the current mail item.
By default, an email will be sent from the email address of the profile that is currently logged on.
message.Save() # save to drafts folder
message.Send() # send to outbox