Re: how to get the recipients addresses of an outlook mail in python...

2008-10-16 Thread Steve Holden
[EMAIL PROTECTED] wrote: > On Oct 16, 5:22 pm, Miki <[EMAIL PROTECTED]> wrote: >>> Can some one help me in obtaining the set of recipients email >>> addresses from an outlook mail? I tried various options like ... >> message["To"] >> message["Cc"] >> >> HTH, >> -- >> Mikihttp://pythonwise.b

Re: how to get the recipients addresses of an outlook mail in python...

2008-10-16 Thread [EMAIL PROTECTED]
On Oct 16, 5:22 pm, Miki <[EMAIL PROTECTED]> wrote: > >         Can some one help me in obtaining the set of recipients email > > addresses from an outlook mail? I tried various options like ... > > message["To"] > message["Cc"] > > HTH, > -- > Mikihttp://pythonwise.blogspot.com Thanks for your re

Re: how to get the recipients addresses of an outlook mail in python...

2008-10-16 Thread Miki
>         Can some one help me in obtaining the set of recipients email > addresses from an outlook mail? I tried various options like ... message["To"] message["Cc"] HTH, -- Miki http://pythonwise.blogspot.com -- http://mail.python.org/mailman/listinfo/python-list

how to get the recipients addresses of an outlook mail in python...

2008-10-16 Thread [EMAIL PROTECTED]
Hi all, Can some one help me in obtaining the set of recipients email addresses from an outlook mail? I tried various options like message.Recipient.Address message.To.Address message.Receiver.Address etc.. but I could get the senders address using message.Sender.Address. Thanks