Substitute the stuff in quotes with your info: mail.settings.sender = "m...@mydomain.com" mail.settings.login = "m...@mydomain.com:mypassword"
Notes: This "gae" setting (vs. "smtp.gmail.com:587") works for me with a Google Apps hosted email, but I've found it doesn't seem to work from the developer console. However, it works just fine from App Engine once uploaded. On Jan 6, 6:39 pm, chawk <chrshawke...@gmail.com> wrote: > I have my db.py file setup this way > > ## configure email > mail=Mail() > mail.settings.server="gae" > mail.settings.sender="myaddress.com" > mail.settings.login="username:password" > > I have been trying this for hours, I get no errors, when i call > functions to send emails they return true, so I am assuming they are > supposed to be working, but the messages never show up in my inbox.