tags:

views:

712

answers:

3

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
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
+4  A: 

What you want is turbomail. In documentation you have an entry where is explains how to integrate it with Pylons.

iElectric