exchange-server

Create new outlook exchange server email in python with win32com

Create new outlook exchange server email in python with win32com Question: ‘Application.CreateItemFromTemplate’ and ‘Application.CreateItem()’ don’t work. I believe it has something to do with the fact that I’m running Outlook Exchange Office 365 instead of the standard outlook session. I am able to find emails in my mailbox and open them, but I am not …

Total answers: 2

Send email to exchange with attachment in russian file name

Send email to exchange with attachment in russian file name Question: I’m using python 2.7.3. and I have following code for send emails with attached file. # coding: cp1251 import os import smtplib from email import Encoders from email.MIMEBase import MIMEBase from email.MIMEMultipart import MIMEMultipart from email.Utils import formatdate def sendEmail(to_address, mail_settings, attachment_file_path, subject = …

Total answers: 3

Reading e-mails from Outlook with Python through MAPI

Reading e-mails from Outlook with Python through MAPI Question: I’m trying to write a short program that will read in the contents of e-mails within a folder on my exchange/Outlook profile so I can manipulate the data. However I’m having a problem finding much information about python and exchange/Outlook integration. A lot of stuff is …

Total answers: 4