├── .gitignore ├── .travis.yml ├── CONTRIBUTING.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── appveyor.yml ├── mailthon ├── __init__.py ├── api.py ├── enclosure.py ├── envelope.py ├── headers.py ├── helpers.py ├── middleware.py ├── postman.py └── response.py ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── assets └── spacer.gif ├── mimetest.py ├── test_api.py ├── test_enclosure.py ├── test_envelope.py ├── test_headers.py ├── test_helpers.py ├── test_middleware.py ├── test_postman.py ├── test_response.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugene-eeo/mailthon/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugene-eeo/mailthon/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugene-eeo/mailthon/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugene-eeo/mailthon/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugene-eeo/mailthon/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugene-eeo/mailthon/HEAD/README.rst -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugene-eeo/mailthon/HEAD/appveyor.yml -------------------------------------------------------------------------------- /mailthon/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugene-eeo/mailthon/HEAD/mailthon/__init__.py -------------------------------------------------------------------------------- /mailthon/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugene-eeo/mailthon/HEAD/mailthon/api.py -------------------------------------------------------------------------------- /mailthon/enclosure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugene-eeo/mailthon/HEAD/mailthon/enclosure.py -------------------------------------------------------------------------------- /mailthon/envelope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugene-eeo/mailthon/HEAD/mailthon/envelope.py -------------------------------------------------------------------------------- /mailthon/headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugene-eeo/mailthon/HEAD/mailthon/headers.py -------------------------------------------------------------------------------- /mailthon/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugene-eeo/mailthon/HEAD/mailthon/helpers.py -------------------------------------------------------------------------------- /mailthon/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugene-eeo/mailthon/HEAD/mailthon/middleware.py -------------------------------------------------------------------------------- /mailthon/postman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugene-eeo/mailthon/HEAD/mailthon/postman.py -------------------------------------------------------------------------------- /mailthon/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugene-eeo/mailthon/HEAD/mailthon/response.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugene-eeo/mailthon/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugene-eeo/mailthon/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/assets/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugene-eeo/mailthon/HEAD/tests/assets/spacer.gif -------------------------------------------------------------------------------- /tests/mimetest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugene-eeo/mailthon/HEAD/tests/mimetest.py -------------------------------------------------------------------------------- /tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugene-eeo/mailthon/HEAD/tests/test_api.py -------------------------------------------------------------------------------- /tests/test_enclosure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugene-eeo/mailthon/HEAD/tests/test_enclosure.py -------------------------------------------------------------------------------- /tests/test_envelope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugene-eeo/mailthon/HEAD/tests/test_envelope.py -------------------------------------------------------------------------------- /tests/test_headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugene-eeo/mailthon/HEAD/tests/test_headers.py -------------------------------------------------------------------------------- /tests/test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugene-eeo/mailthon/HEAD/tests/test_helpers.py -------------------------------------------------------------------------------- /tests/test_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugene-eeo/mailthon/HEAD/tests/test_middleware.py -------------------------------------------------------------------------------- /tests/test_postman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugene-eeo/mailthon/HEAD/tests/test_postman.py -------------------------------------------------------------------------------- /tests/test_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugene-eeo/mailthon/HEAD/tests/test_response.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugene-eeo/mailthon/HEAD/tests/utils.py --------------------------------------------------------------------------------