├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.rst ├── django_email_gateway ├── __init__.py ├── receiving_mail.py └── sending_mail.py ├── docs ├── Makefile ├── __init__.py └── source │ ├── conf.py │ └── index.rst └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroPyramid/django-email-gateway/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroPyramid/django-email-gateway/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst 2 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroPyramid/django-email-gateway/HEAD/README.rst -------------------------------------------------------------------------------- /django_email_gateway/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_email_gateway/receiving_mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroPyramid/django-email-gateway/HEAD/django_email_gateway/receiving_mail.py -------------------------------------------------------------------------------- /django_email_gateway/sending_mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroPyramid/django-email-gateway/HEAD/django_email_gateway/sending_mail.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroPyramid/django-email-gateway/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroPyramid/django-email-gateway/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroPyramid/django-email-gateway/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroPyramid/django-email-gateway/HEAD/setup.py --------------------------------------------------------------------------------