├── .gitignore ├── .hgignore ├── AUTHORS ├── LICENSE ├── MANIFEST.in ├── README.rst ├── docs ├── conf.py └── index.rst ├── email_extras ├── __init__.py ├── admin.py ├── apps.py ├── backends.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20161103_0752.py │ ├── 0003_auto_20161103_0315.py │ ├── 0004_use_djangos_emailfield.py │ └── __init__.py ├── models.py ├── settings.py ├── templates │ └── admin │ │ └── email_extras │ │ ├── address │ │ └── change_form.html │ │ └── key │ │ └── change_form.html └── utils.py ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-email-extras/HEAD/.gitignore -------------------------------------------------------------------------------- /.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-email-extras/HEAD/.hgignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-email-extras/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-email-extras/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-email-extras/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-email-extras/HEAD/README.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-email-extras/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../README.rst -------------------------------------------------------------------------------- /email_extras/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-email-extras/HEAD/email_extras/__init__.py -------------------------------------------------------------------------------- /email_extras/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-email-extras/HEAD/email_extras/admin.py -------------------------------------------------------------------------------- /email_extras/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-email-extras/HEAD/email_extras/apps.py -------------------------------------------------------------------------------- /email_extras/backends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-email-extras/HEAD/email_extras/backends.py -------------------------------------------------------------------------------- /email_extras/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-email-extras/HEAD/email_extras/forms.py -------------------------------------------------------------------------------- /email_extras/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-email-extras/HEAD/email_extras/migrations/0001_initial.py -------------------------------------------------------------------------------- /email_extras/migrations/0002_auto_20161103_0752.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-email-extras/HEAD/email_extras/migrations/0002_auto_20161103_0752.py -------------------------------------------------------------------------------- /email_extras/migrations/0003_auto_20161103_0315.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-email-extras/HEAD/email_extras/migrations/0003_auto_20161103_0315.py -------------------------------------------------------------------------------- /email_extras/migrations/0004_use_djangos_emailfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-email-extras/HEAD/email_extras/migrations/0004_use_djangos_emailfield.py -------------------------------------------------------------------------------- /email_extras/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /email_extras/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-email-extras/HEAD/email_extras/models.py -------------------------------------------------------------------------------- /email_extras/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-email-extras/HEAD/email_extras/settings.py -------------------------------------------------------------------------------- /email_extras/templates/admin/email_extras/address/change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-email-extras/HEAD/email_extras/templates/admin/email_extras/address/change_form.html -------------------------------------------------------------------------------- /email_extras/templates/admin/email_extras/key/change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-email-extras/HEAD/email_extras/templates/admin/email_extras/key/change_form.html -------------------------------------------------------------------------------- /email_extras/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-email-extras/HEAD/email_extras/utils.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-email-extras/HEAD/setup.py --------------------------------------------------------------------------------