Google App Engine (GAE) supports both its own framework, called webapp, and Django.
So, which one do you use?
(more...)
The actual error you get is: SystemErrorParent module 'email' not loaded.
(more...)
The documentation states that you can either use an existing SMTP provider or sendmail with the local server but the former solution didn't work for me with GMail or the SMTP server at my web host. And, from a quick Google search for sendmail, I got the impression that I should stay away from it.
In the end, I opted to use a simple Python-based SMTP server by Les Smithson to debug my mail calls locally.
It's very simple to use:
(more...)
Here's how it works:
(more...)