I am trying to send Email using http://code.google.com/appengine/docs/python/mail/sendingmail.html this sample code, here i am using host server as gmail
by using dev_appserver.py --smtp_host=smtp.gmail.com --smtp_port=25 \ --smtp_user=xxx@gmail.com--smtp_password=k1tt3ns myapp
I have used same Email Ids in Python code and above code. after running my application I am getting following Error
Traceback (most recent call last): File "C:\Program Files\Google\google_appengine\google\appengine\ext\webapp__init__.py", line 500, in call handler.post(*groups) File "C:\Documents and Settings\desk\Desktop\apps\temp\main.py", line 139, in post """) File "C:\Program Files\Google\google_appengine\google\appengine\api\mail.py", line 205, in send_mail message.send(make_sync_call) File "C:\Program Files\Google\google_appengine\google\appengine\api\mail.py", line 474, in send make_sync_call('mail', self._API_CALL, message, response) File "C:\Program Files\Google\google_appengine\google\appengine\api\apiproxy_stub_map.py", line 68, in MakeSyncCall apiproxy.MakeSyncCall(service, call, request, response) File "C:\Program Files\Google\google_appengine\google\appengine\api\apiproxy_stub_map.py", line 240, in MakeSyncCall stub.MakeSyncCall(service, call, request, response) File "C:\Program Files\Google\google_appengine\google\appengine\api\apiproxy_stub.py", line 80, in MakeSyncCall method(request, response) File "C:\Program Files\Google\google_appengine\google\appengine\api\mail_stub.py", line 203, in _Send self._SendSMTP(mime_message, smtp_lib) File "C:\Program Files\Google\google_appengine\google\appengine\api\mail_stub.py", line 133, in _SendSMTP smtp.login(self._smtp_user, self._smtp_password) File "C:\Python26\lib\smtplib.py", line 552, in login raise SMTPException("SMTP AUTH extension not supported by server.") SMTPException: SMTP AUTH extension not supported by server.
please help me on this how to resolve the issue
Thanks in advance
