Receive/Read emails in Django

Has anyone found a way to receive emails into Django? Using a mail-in-a-box server and want to receive messages that come into a specific inbox.

Found imap-tools and appears to work. Still open to other or better suggestions.

That’s pretty much the way to do it. Django itself isn’t going to “receive” emails, however, a view can access an email account to retrieve emails stored in that account.