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
*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ó
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
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