Tagged Questions
0
votes
1answer
33 views
Invoke a python script when an outlook email is received?
My requirement is to invoke a python script as soon as a particular email is sent to a specific address in outlook. I am using win32com outlook client in my script.
I am thinking of running the ...
0
votes
1answer
27 views
Drag'n'Drop from Outlook only for one Attachment in Qt?
I accept drops from Outlook in my application. Extract the filenames were a funny torture, but now I have a list of them. But if I ask for the FileContents it is always empty for messages (.msg ...
0
votes
1answer
40 views
Attachments don't show up in Outlook when sending via python
We're trying to send emails with attachments but for some reason the attachments don't show up for people using outlook.
If they forward the email to someone using gmail it shows up fine in gmail.
If ...
1
vote
1answer
39 views
Outlook / Python : Open specific message at screen
I want to do a "simple" task in Outlook, with a Python script, but I'm usually in PHP and it's a little bit difficult for me.
Here is the task:
Open Outlook (it's ok for that)
Check a specific ...
0
votes
0answers
54 views
Is there any way to do Interactive Service in Windows 7 (Python)?
I've been able to create a windows service using Python and following this tutorial:
http://ryrobes.com/python/running-python-scripts-as-a-windows-service/
However I tried to implement a script in ...
0
votes
0answers
46 views
os.walk to recreate file struct for outlook inbox
yet another os.walk question.
I am trying to work with os.walk to recreate a folder structure to reflect a import into a outlook pst, using redemption.
I am having a hard time keeping track mentally ...
0
votes
0answers
68 views
Python win32com outlook attach file with “insert as text” method
I am trying to send a HTML webpage via outlook with python win32com.
However, I don't know how to config the add attachment call to do "insert as text" method.
Does anyone know how to do that?
...
0
votes
0answers
93 views
Automating attachment download from Outlook using Python
I was trying to automate the downloads of attachments from my outlook sent from a specific user. I found this to be answer for a similar question here..
import win32com.client
import pythoncom
import ...
0
votes
0answers
102 views
Outlook 2010 Items.Find - finding entryID for each mail
I'm using Python to automate Outlook using COM.
I'm having quite a bit of success.
However, while using "Items.find" I can print out resultItem.SenderEmailAddress or resultItem.Subject etc
however ...
1
vote
1answer
196 views
Outlook automation / Object Model query (Python) - unique ID for each email?
I've been using the MSDN to build a simple app that automates some Outlook 2010 basics.
It's going well, but I'm just stuck at something simple I think.
My question is this:
I've been able to get ...
0
votes
1answer
106 views
How can I see emails sent with Python's smtplib in my Outlook Sent Items folder?
I am using hosted exchange Microsoft Office 365 email and I have a Python script that sends email with smtplib. It is working very well. But there is one issue, how can I get the emails to show up in ...
0
votes
1answer
96 views
An Email Report Application for Outlook
The sales folk in my start-up send and receive a bunch of mail on a daily basis from vendors. dealers and customers.
But they tend to lose track of these mails quite often...as to whether they have ...
1
vote
1answer
55 views
Generating & Sending MS Outlook Tasks
Is it possible, to create (generate) an e-mail (without any MS COM-objects etc - for example at *nix platform), which will be recognized by MS Outlook as Task?
1
vote
2answers
148 views
how to trigger a python script in outlook using rules?
Is there any way to run the python script using outlook rules. I see an option of running the script but when i click, an empty box appears. How do i get the script in that box. I know it can be done ...
2
votes
0answers
120 views
Error Connecting to Outlook via COM
I have the following python code
o = win32com.client.Dispatch("Outlook.Application")
ns = o.GetNamespace("MAPI")
profile = ns.Folders.Item("Profile Name")
tasks = profile.Folders.Item("Tasks")
print ...