views:

573

answers:

3

I need to integrate a email client in my current python web app. Anything available?

L.E.: I'm building my app on top of CherryPy

+1  A: 

You can build one, using email for generating and parsing mail, imaplib for reading (and managing) incoming mail from your mail server, and smtplib for sending mail to the world.

gimel
Modding down because the question was "integrating an email client", not "writing an email client from standard library".
ddaa
+1  A: 

Looking up webmail on pypi gives Posterity.

There is very probably some way to build a webmail with very little work using Zope3 components, or some other CMS.

I guess if you are writing a webapp, you are probably using one of the popular frameworks. We would need to know which one to give a more specific answer.

ddaa
+1  A: 

You could try Quotient. It's a somewhat unusual webmail system, and it definitely won't fit into the same process as CherryPy - but it is in Python ;).

Glyph