Re: [python-win32] Python vs Outlook Question

2011-06-16 Thread Shashwat Sinha
Thanks Tim. On Thu, Jun 16, 2011 at 5:33 PM, Tim Roberts wrote: > Shashwat Sinha wrote: > > > > Thanks for your response. After sending the post I was able to do > > attachments but other properties like SenderEmailAddress are not > > working. It gives me an AttributeError as follows: > > >

Re: [python-win32] Python vs Outlook Question

2011-06-16 Thread Tim Roberts
Shashwat Sinha wrote: > > Thanks for your response. After sending the post I was able to do > attachments but other properties like SenderEmailAddress are not > working. It gives me an AttributeError as follows: > > Traceback (most recent call last): > ... > File "autoMailer.py", line 118,

Re: [python-win32] Python vs Outlook Question

2011-06-16 Thread Shashwat Sinha
Hello Tim, Thanks for your response. After sending the post I was able to do attachments but other properties like SenderEmailAddress are not working. It gives me an AttributeError as follows: Traceback (most recent call last): File "autoMailer.py", line 146, in AutoMailSend() File "au

Re: [python-win32] Python vs Outlook Question

2011-06-16 Thread Tim Roberts
Shashwat Sinha wrote: > Hi, > > I wrote this simple code that works fine: > > import win32com.client as W > > olook = W.gencache.EnsureDispatch("%s.Application" %profilename) > mail = olook.CreateItem(W.constants.olMailItem) > mail.Recipients.Add('x...@yahoo.com ) > ma

[python-win32] Python vs Outlook Question

2011-06-16 Thread Shashwat Sinha
Hi, I wrote this simple code that works fine: import win32com.client as W olook = W.gencache.EnsureDispatch("%s.Application" %profilename) mail = olook.CreateItem(W.constants.olMailItem) mail.Recipients.Add('x...@yahoo.com) mail.Subject = 'Hello' mail.Body = 'Hello' mail.Send() When I have Out