This code should help.
code
import win32com.client
olMailItem = 0x0
obj = win32com.client.Dispatch("Outlook.Application")
newMail = obj.CreateItem(olMailItem)
newMail.Subject = "This works"
newMail.Body = "It worked aging\n"
newMail.display()
V.C.Sekhar wrote:
> Hi there,
>
> Can any
Hi there,
Can any one please help in getting me Python-Outlook
programming issue clarified.
I just wanted to do the following using Python:
1)Open a New Oulook Mail Window
2) Fill the field: to-email address and Write some body to it.(I
DON't want to send it automatically)