Re: Error in code send Email

2009-05-22 Thread Kushal Kumaran
On Fri, May 22, 2009 at 2:20 PM, Kalyan Chakravarthy wrote: > Google App Engine doesn't allow to use sockets directly Then what could be > the solution for this ? > > can any one Reply me > Did you try google? Searching for google app engine email immediately gives results. See also: http://cat

Re: Error in code send Email

2009-05-22 Thread Kalyan Chakravarthy
*Google App Engine doesn't allow to use sockets directly *Then what could be the solution for this ? can any one Reply me Regards Kalyan On Fri, May 22, 2009 at 1:05 PM, Gabriel Genellina wrote: > En Thu, 21 May 2009 02:31:02 -0300, Kalyan Chakravarthy < > kalyanchakravar...@hyit.com> escribió

Re: Error in code send Email

2009-05-22 Thread Gabriel Genellina
En Thu, 21 May 2009 02:31:02 -0300, Kalyan Chakravarthy escribió: I am using above code to send an Email, for this i am not installed any SMTP setup my local , I just given import smtplib and I am getting following error **Traceback (most recent call last): File "C:\Program Files\Google\g

Error in code send Email

2009-05-20 Thread Kalyan Chakravarthy
Hi All, import smtplib mail="a...@xyz.com"; subject="Hai"; msg = 'Some Text'; smtp_server = smtplib.SMTP( 'mail.%s' % mail.split( '@' )[-1] ) smtp_server.sendmail( mail , [ mail ] , 'Subject: %s\n' % subject + 'To: %s\n' % mail