[web2py] Re: email not sent

2017-05-17 Thread Ron Chatterjee
This have done the trick! thank you - PA https://www.google.com/accounts/DisplayUnlockCaptcha On Wednesday, May 17, 2017 at 10:03:51 AM UTC-4, Ron Chatterjee wrote: > > I did all of that. Gmail is set as less secured. Here is the app and > instruction to make it to work locally (local server)

[web2py] Re: email not sent

2017-05-16 Thread pbreit
Is there some reason you are not setting "sender"? You might need to do this: https://support.google.com/accounts/answer/6010255 -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/li

[web2py] Re: email not sent

2014-08-17 Thread Alex Glaros
okay, I assured Google it was really me, now password reset seems to work thanks folks! Alex -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report Issues) --- You receive

[web2py] Re: email not sent

2014-08-16 Thread Massimo Di Pierro
mail.settings.server = 'logging' only logs but does not send emails. PythonAnywhere does not run any smtp server so you have to use an external one for example gmail: mail.settings.server = 'smtp.gmail.com:587' You need to configure that with your username and password. You also have to tell

[web2py] Re: email not sent

2014-08-16 Thread lyn2py
Yup, you need to change "logging" to the smtp gmail server, in other words, switch them around (put the smtp first followed by logging). Logging will print the email in the console, which you can use to check the contents. On Sunday, August 17, 2014 1:50:05 PM UTC+8, Alex Glaros wrote: > > on P