A Django app to sync inbox with Django admin
Project description
ZenMailbox provides functionality to sync inbox with Django admin, thread messages, and reply in threads.
Installation
Install package using pip:
pip install django-zenmailbox
In order to use ckeditor in html text fields add use this command instead:
pip install django-zenmailbox[ckeditor]
Quick start
Add “zenmailbox” to your INSTALLED_APPS:
INSTALLED_APPS = [ ... 'zenmailbox', 'ckeditor' # if you installed package with ckeditor extra requirement ]
Run python manage.py migrate to create mail models.
Start the development server and visit http://127.0.0.1:8000/admin/zenmailbox/mailbox/ to create mailbox.
Choose created mailbox then use action Fetch mail. It can take a while.
Setup zenmailbox.mailbox_manager.fetch_new_mail calling periodically (celerybeat, cron etc)
Settings
To change reply template place it under zenmailbox/reply.html
Django settings entries:
ZENMAILBOX_ATTACHMENTS_FOLDER = os.path.join(BASE_DIR, 'attachments') ZENMAILBOX_ATTACHMENT_PATH_FORMAT = '{mailbox.id}/{folder.id}/{mail.id}/{attachment.filename}' ZENMAILBOX_CKEDITOR_SETTINGS = "default"
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-zenmailbox-0.0.2.tar.gz
.
File metadata
- Download URL: django-zenmailbox-0.0.2.tar.gz
- Upload date:
- Size: 11.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.7.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8c3ae89d93abaf0b8a37ab3981c57e651a5aac5ed3250b3f00e34a6f2a306213 |
|
MD5 | 8b69c3974443185d159c1879a55102d6 |
|
BLAKE2b-256 | 4efe624bf7fc169d4792c8e5428f8a7717e5050595e2f2838e0dd73ab9abf536 |