[google-appengine] Re: Error in code send Email

2009-05-23 Thread GregF
If this is using the SDK, it does not send messages by default - you even need to add an argument to appcfg.py to show the message body in the logs. If it is on production, then make sure you have supp...@example.com set up as an admin user. If you read the docs for the mail API, it tells you

[google-appengine] Re: Error in code send Email

2009-05-22 Thread Nick Johnson (Google)
Hi S K, You cannot use smtplib to send email in App Engine. You need to use the Mail API instead: http://code.google.com/appengine/docs/python/mail/ -Nick Johnson On Fri, May 22, 2009 at 9:56 AM, S K sksk...@gmail.com wrote: Hi All, import smtplib  mail=a...@xyz.com;     subject=Hai;   

[google-appengine] Re: Error in code send Email

2009-05-22 Thread S K
Hi Johnson as per ur guidance I have followed following format after that its is showing Status:200 OK, but i am not able to seen the mail in what *TO *address I given, can any one tell me what could be the reason from google.appengine.api import mail