├── .gitignore ├── .travis.yml ├── AUTHORS ├── CHANGELOG ├── LICENSE ├── MANIFEST.in ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── docs ├── Makefile └── source │ ├── commands.rst │ ├── conf.py │ ├── index.rst │ ├── installation.rst │ ├── license.rst │ └── usage.rst ├── example-requirements.txt ├── example ├── example │ ├── __init__.py │ ├── celery.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── mail_example │ ├── __init__.py │ ├── admin.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── index.html │ ├── tests.py │ └── views.py └── manage.py ├── fabfile.py ├── mailqueue ├── __init__.py ├── admin.py ├── apps.py ├── defaults.py ├── locale │ └── de │ │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ ├── clear_sent_messages.py │ │ └── send_queued_messages.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_mailermessage_reply_to.py │ ├── 0003_auto_20160920_1458.py │ ├── 0004_mailermessage_created.py │ ├── 0005_cc_address_created.py │ └── __init__.py ├── models.py ├── receivers.py ├── tasks.py ├── tests │ ├── __init__.py │ ├── attachments │ │ ├── big.pdf │ │ └── small.txt │ ├── factories.py │ ├── test_messages.py │ ├── test_smoke.py │ └── utils.py ├── urls.py ├── utils.py └── views.py ├── manage.py ├── pytest.ini ├── requirements.txt ├── setup.cfg ├── setup.py └── testsettings.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstegelman/django-mail-queue/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstegelman/django-mail-queue/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstegelman/django-mail-queue/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstegelman/django-mail-queue/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstegelman/django-mail-queue/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstegelman/django-mail-queue/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstegelman/django-mail-queue/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstegelman/django-mail-queue/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstegelman/django-mail-queue/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/source/commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstegelman/django-mail-queue/HEAD/docs/source/commands.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstegelman/django-mail-queue/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstegelman/django-mail-queue/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstegelman/django-mail-queue/HEAD/docs/source/installation.rst -------------------------------------------------------------------------------- /docs/source/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstegelman/django-mail-queue/HEAD/docs/source/license.rst -------------------------------------------------------------------------------- /docs/source/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstegelman/django-mail-queue/HEAD/docs/source/usage.rst -------------------------------------------------------------------------------- /example-requirements.txt: -------------------------------------------------------------------------------- 1 | django==1.8 2 | celery 3 | kombu 4 | -------------------------------------------------------------------------------- /example/example/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstegelman/django-mail-queue/HEAD/example/example/__init__.py -------------------------------------------------------------------------------- /example/example/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstegelman/django-mail-queue/HEAD/example/example/celery.py -------------------------------------------------------------------------------- /example/example/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstegelman/django-mail-queue/HEAD/example/example/settings.py -------------------------------------------------------------------------------- /example/example/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstegelman/django-mail-queue/HEAD/example/example/urls.py -------------------------------------------------------------------------------- /example/example/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstegelman/django-mail-queue/HEAD/example/example/wsgi.py -------------------------------------------------------------------------------- /example/mail_example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/mail_example/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstegelman/django-mail-queue/HEAD/example/mail_example/admin.py -------------------------------------------------------------------------------- /example/mail_example/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/mail_example/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstegelman/django-mail-queue/HEAD/example/mail_example/models.py -------------------------------------------------------------------------------- /example/mail_example/templates/index.html: -------------------------------------------------------------------------------- 1 |

Mail Sent

2 | -------------------------------------------------------------------------------- /example/mail_example/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstegelman/django-mail-queue/HEAD/example/mail_example/tests.py -------------------------------------------------------------------------------- /example/mail_example/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstegelman/django-mail-queue/HEAD/example/mail_example/views.py -------------------------------------------------------------------------------- /example/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstegelman/django-mail-queue/HEAD/example/manage.py -------------------------------------------------------------------------------- /fabfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstegelman/django-mail-queue/HEAD/fabfile.py -------------------------------------------------------------------------------- /mailqueue/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstegelman/django-mail-queue/HEAD/mailqueue/__init__.py -------------------------------------------------------------------------------- /mailqueue/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstegelman/django-mail-queue/HEAD/mailqueue/admin.py -------------------------------------------------------------------------------- /mailqueue/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstegelman/django-mail-queue/HEAD/mailqueue/apps.py -------------------------------------------------------------------------------- /mailqueue/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstegelman/django-mail-queue/HEAD/mailqueue/defaults.py -------------------------------------------------------------------------------- /mailqueue/locale/de/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstegelman/django-mail-queue/HEAD/mailqueue/locale/de/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /mailqueue/locale/de/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstegelman/django-mail-queue/HEAD/mailqueue/locale/de/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /mailqueue/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mailqueue/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mailqueue/management/commands/clear_sent_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstegelman/django-mail-queue/HEAD/mailqueue/management/commands/clear_sent_messages.py -------------------------------------------------------------------------------- /mailqueue/management/commands/send_queued_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstegelman/django-mail-queue/HEAD/mailqueue/management/commands/send_queued_messages.py -------------------------------------------------------------------------------- /mailqueue/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstegelman/django-mail-queue/HEAD/mailqueue/migrations/0001_initial.py -------------------------------------------------------------------------------- /mailqueue/migrations/0002_mailermessage_reply_to.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstegelman/django-mail-queue/HEAD/mailqueue/migrations/0002_mailermessage_reply_to.py -------------------------------------------------------------------------------- /mailqueue/migrations/0003_auto_20160920_1458.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstegelman/django-mail-queue/HEAD/mailqueue/migrations/0003_auto_20160920_1458.py -------------------------------------------------------------------------------- /mailqueue/migrations/0004_mailermessage_created.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstegelman/django-mail-queue/HEAD/mailqueue/migrations/0004_mailermessage_created.py -------------------------------------------------------------------------------- /mailqueue/migrations/0005_cc_address_created.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstegelman/django-mail-queue/HEAD/mailqueue/migrations/0005_cc_address_created.py -------------------------------------------------------------------------------- /mailqueue/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mailqueue/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstegelman/django-mail-queue/HEAD/mailqueue/models.py -------------------------------------------------------------------------------- /mailqueue/receivers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstegelman/django-mail-queue/HEAD/mailqueue/receivers.py -------------------------------------------------------------------------------- /mailqueue/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstegelman/django-mail-queue/HEAD/mailqueue/tasks.py -------------------------------------------------------------------------------- /mailqueue/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mailqueue/tests/attachments/big.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstegelman/django-mail-queue/HEAD/mailqueue/tests/attachments/big.pdf -------------------------------------------------------------------------------- /mailqueue/tests/attachments/small.txt: -------------------------------------------------------------------------------- 1 | This is a small attachment. 2 | -------------------------------------------------------------------------------- /mailqueue/tests/factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstegelman/django-mail-queue/HEAD/mailqueue/tests/factories.py -------------------------------------------------------------------------------- /mailqueue/tests/test_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstegelman/django-mail-queue/HEAD/mailqueue/tests/test_messages.py -------------------------------------------------------------------------------- /mailqueue/tests/test_smoke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstegelman/django-mail-queue/HEAD/mailqueue/tests/test_smoke.py -------------------------------------------------------------------------------- /mailqueue/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstegelman/django-mail-queue/HEAD/mailqueue/tests/utils.py -------------------------------------------------------------------------------- /mailqueue/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstegelman/django-mail-queue/HEAD/mailqueue/urls.py -------------------------------------------------------------------------------- /mailqueue/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstegelman/django-mail-queue/HEAD/mailqueue/utils.py -------------------------------------------------------------------------------- /mailqueue/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstegelman/django-mail-queue/HEAD/mailqueue/views.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstegelman/django-mail-queue/HEAD/manage.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstegelman/django-mail-queue/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstegelman/django-mail-queue/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstegelman/django-mail-queue/HEAD/setup.py -------------------------------------------------------------------------------- /testsettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstegelman/django-mail-queue/HEAD/testsettings.py --------------------------------------------------------------------------------