Are there any webmail clients written in python?

I need to integrate a mail client in my current python web application. Is anything available?

LE: I'm building my application on top of CherryPy

+4
source share
4 answers

Looking at webmail on pypi gives Posterity .

There is probably some way to create webmail with very little workload using the Zope3 components or some other CMS.

I assume that if you are writing webapp, you are probably using one of the popular frameworks. We will need to find out which one will give a more specific answer.

0
source

For others who may find this topic, check out Mailpile . I have not used it yet, it is a python based email client, and I am sure that it can be modified to work as a webmail application.

+2
source

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

+1
source

You can create one using email to generate and process mail, imaplib to read (and manage) incoming mail from your mail server, and smtplib to send mail to the world.

0
source

All Articles