You will need to provide a way for appengine to email to your e-mail account if you want to be able to have it send e-mail to you. This is done by providing the information about your SMTP server in the settings.py or by passing the --enable_sendmail or --smtp_host, --smtp_port, --smtp_user, and --smtp_password options to manage.py runserver. --enable_sendmail will only work if you have sendmail on your machine obviously.
Setting the email options in your settings.py looks like it does in django: EMAIL_HOST="localhost" EMAIL_PORT=25 EMAIL_HOST_USER="" EMAIL_PASSWORD="" I'm really not sure how well setting the smtp options work as I use the sendmail option locally. I do know there was an issue with setting the SMTP options on linux. http://code.google.com/p/googleappengine/issues/detail?id=626&q=smtp&colspec=ID%20Type%20Status%20Priority%20Stars%20Owner%20Summary%20Log%20Component On Fri, May 29, 2009 at 10:11 PM, S K <[email protected]> wrote: > Hi All, > can any one tell that in this link * > http://code.google.com/p/app-engine-patch/ * one sample application( > *app-engine-patch-sample-1.0*) , I have downloaded and run the application > but in that registration for after enter all the field and submit the but is > saying that *In order to activate your account please check your email and > click on the activation link.* but I haven't received any mail to activate > my account, If any one helps means its useful for my coding, kindly help me > on this, its urgent for me > > > Thanks in Advance > > > Regards > SK > > > > > > > -- ======================================= 株式会社ビープラウド イアン・ルイス 〒150-0012 東京都渋谷区広尾1-11-2アイオス広尾ビル604 email: [email protected] TEL:03-5795-2707 FAX:03-5795-2708 http://www.beproud.jp/ ======================================= --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en -~----------~----~----~----~------~----~------~--~---
