Re: Accessing the message of Outlook inbox

2008-10-10 Thread venutaurus539
On Oct 9, 12:19 am, Mike Driscoll <[EMAIL PROTECTED]> wrote: > On Oct 8, 12:50 pm, [EMAIL PROTECTED] wrote: > > > > > On Oct 8, 8:53 pm, Mike Driscoll <[EMAIL PROTECTED]> wrote: > > > > On Oct 8, 9:24 am, [EMAIL PROTECTED] wrote: > > > > > Hi all, > > > >         How can I access the body of a mail

Re: Accessing the message of Outlook inbox

2008-10-08 Thread venutaurus539
On Oct 8, 8:53 pm, Mike Driscoll <[EMAIL PROTECTED]> wrote: > On Oct 8, 9:24 am, [EMAIL PROTECTED] wrote: > > > Hi all, > >         How can I access the body of a mail in Outlook Inbox? I tried > > various options like message.Body or message.Mesg etc. but didn't > > work. I could get the subject o

Accessing the message of Outlook inbox

2008-10-08 Thread venutaurus539
Hi all, How can I access the body of a mail in Outlook Inbox? I tried various options like message.Body or message.Mesg etc. but didn't work. I could get the subject of the mail using message.Subject though. Any help is appreciated. Thanks in advance, Venu -- http://mail.python.org/mailma

Re: Problem while reading an outlook in box using python.

2008-10-08 Thread venutaurus539
On Oct 8, 2:54 pm, Tim Golden <[EMAIL PROTECTED]> wrote: > [EMAIL PROTECTED] wrote: > > May I know how to check whether my Outlook is installed with CDO > > components? > > > There is no entry in my Registry Database with the name MAPI.Session. > > Well, that pretty much *is* the check. Get hold of

Re: Problem while reading an outlook in box using python.

2008-10-08 Thread venutaurus539
May I know how to check whether my Outlook is installed with CDO components? There is no entry in my Registry Database with the name MAPI.Session. Thank you, Venu. -- http://mail.python.org/mailman/listinfo/python-list

Problem while reading an outlook in box using python.

2008-10-07 Thread venutaurus539
Hello, I was getting an error in Cocreate instance while trying to access "Outlook" using python script. The python script looks like: from win32com.client import Dispatch session = Dispatch("MAPI.session") session.Logon('OUTLOOK') # MAPI profile name inbox = session.Inbox W