Re: [python-win32] Python for Outlook

2011-02-15 Thread Kelly Black
Abhijeet, Can you use POP3 or IMAP? There are some modules in Python to handle mail using IMAP and POP3 - (along with the SMTP module, you could have something in no time). Kelly On Wed, Feb 16, 2011 at 09:24:39AM +0530, abhijeet mahagaonkar wrote: > Dear Pythoners, > > I'm working on creatin

Re: [python-win32] Python for Outlook

2011-02-15 Thread abhijeet mahagaonkar
Hi Kelly, I'm using IMAP. Could you please let me know the which modules i can use? Warm Regards, Abhijeet. On Wed, Feb 16, 2011 at 10:00 AM, Kelly Black wrote: > > Abhijeet, > > Can you use POP3 or IMAP? There are some modules in Python to handle > mail using IMAP and POP3 - (along with the

[python-win32] Python for Outlook

2011-02-15 Thread abhijeet mahagaonkar
Dear Pythoners, I'm working on creating an application which will continuously monitor my outlook inbox and wait for a new incoming mail. It will scan To and cc fields and forward the email to another address appropriately. I want a few pointers on how best I will be able to achieve this. Thanks