I am using Pylons to develop an application and I want my controller actions to send emails to certain addresses. Is there a built in Pylons feature for sending email?
+1
A:
Can't you just use standard Python library modules, email
to prepare the mail and smtp
to send it? What extra value beyond that are you looking for from the "built-in feature"?
Alex Martelli
2009-07-06 22:59:13
Handling non-ASCII data transparently was the thing I missed most. I haven't checked lately whether Python 2.6 improves this or not.
Marius Gedminas
2009-09-17 18:48:56