├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README ├── django_mailer ├── __init__.py ├── admin.py ├── constants.py ├── engine.py ├── lockfile.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ ├── retry_deferred.py │ │ └── send_mail.py ├── managers.py ├── models.py ├── settings.py ├── smtp_queue.py └── tests │ ├── __init__.py │ ├── backend.py │ ├── base.py │ ├── commands.py │ └── engine.py ├── docs ├── index.txt ├── install.txt ├── settings.txt └── usage.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileyChris/django-mailer-2/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileyChris/django-mailer-2/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileyChris/django-mailer-2/HEAD/README -------------------------------------------------------------------------------- /django_mailer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileyChris/django-mailer-2/HEAD/django_mailer/__init__.py -------------------------------------------------------------------------------- /django_mailer/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileyChris/django-mailer-2/HEAD/django_mailer/admin.py -------------------------------------------------------------------------------- /django_mailer/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileyChris/django-mailer-2/HEAD/django_mailer/constants.py -------------------------------------------------------------------------------- /django_mailer/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileyChris/django-mailer-2/HEAD/django_mailer/engine.py -------------------------------------------------------------------------------- /django_mailer/lockfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileyChris/django-mailer-2/HEAD/django_mailer/lockfile.py -------------------------------------------------------------------------------- /django_mailer/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_mailer/management/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileyChris/django-mailer-2/HEAD/django_mailer/management/commands/__init__.py -------------------------------------------------------------------------------- /django_mailer/management/commands/retry_deferred.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileyChris/django-mailer-2/HEAD/django_mailer/management/commands/retry_deferred.py -------------------------------------------------------------------------------- /django_mailer/management/commands/send_mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileyChris/django-mailer-2/HEAD/django_mailer/management/commands/send_mail.py -------------------------------------------------------------------------------- /django_mailer/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileyChris/django-mailer-2/HEAD/django_mailer/managers.py -------------------------------------------------------------------------------- /django_mailer/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileyChris/django-mailer-2/HEAD/django_mailer/models.py -------------------------------------------------------------------------------- /django_mailer/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileyChris/django-mailer-2/HEAD/django_mailer/settings.py -------------------------------------------------------------------------------- /django_mailer/smtp_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileyChris/django-mailer-2/HEAD/django_mailer/smtp_queue.py -------------------------------------------------------------------------------- /django_mailer/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileyChris/django-mailer-2/HEAD/django_mailer/tests/__init__.py -------------------------------------------------------------------------------- /django_mailer/tests/backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileyChris/django-mailer-2/HEAD/django_mailer/tests/backend.py -------------------------------------------------------------------------------- /django_mailer/tests/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileyChris/django-mailer-2/HEAD/django_mailer/tests/base.py -------------------------------------------------------------------------------- /django_mailer/tests/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileyChris/django-mailer-2/HEAD/django_mailer/tests/commands.py -------------------------------------------------------------------------------- /django_mailer/tests/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileyChris/django-mailer-2/HEAD/django_mailer/tests/engine.py -------------------------------------------------------------------------------- /docs/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileyChris/django-mailer-2/HEAD/docs/index.txt -------------------------------------------------------------------------------- /docs/install.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileyChris/django-mailer-2/HEAD/docs/install.txt -------------------------------------------------------------------------------- /docs/settings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileyChris/django-mailer-2/HEAD/docs/settings.txt -------------------------------------------------------------------------------- /docs/usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileyChris/django-mailer-2/HEAD/docs/usage.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileyChris/django-mailer-2/HEAD/setup.py --------------------------------------------------------------------------------