gitextract_9o3m1iyk/ ├── .coveragerc ├── .github/ │ └── workflows/ │ ├── python-publish.yml │ └── tests.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── AUTHORS.rst ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── docs/ │ ├── Makefile │ ├── _static/ │ │ └── .gitkeep │ ├── advanced.rst │ ├── api.rst │ ├── conf.py │ ├── examples.rst │ ├── faq.rst │ ├── howtohelp.rst │ ├── index.rst │ ├── install.rst │ ├── links.rst │ ├── quickstart.rst │ ├── requirements.txt │ └── transformations.rst ├── emails/ │ ├── __init__.py │ ├── backend/ │ │ ├── __init__.py │ │ ├── factory.py │ │ ├── inmemory/ │ │ │ └── __init__.py │ │ ├── response.py │ │ └── smtp/ │ │ ├── __init__.py │ │ ├── aio_backend.py │ │ ├── aio_client.py │ │ ├── backend.py │ │ ├── client.py │ │ └── exceptions.py │ ├── django/ │ │ └── __init__.py │ ├── django_.py │ ├── exc.py │ ├── loader/ │ │ ├── __init__.py │ │ └── helpers.py │ ├── message.py │ ├── py.typed │ ├── signers.py │ ├── store/ │ │ ├── __init__.py │ │ ├── file.py │ │ └── store.py │ ├── template/ │ │ ├── __init__.py │ │ ├── base.py │ │ ├── jinja_template.py │ │ └── mako_template.py │ ├── testsuite/ │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── django_/ │ │ │ └── test_django_integrations.py │ │ ├── loader/ │ │ │ ├── data/ │ │ │ │ └── html_import/ │ │ │ │ └── oldornament/ │ │ │ │ └── oldornament/ │ │ │ │ └── index.html │ │ │ ├── test_helpers.py │ │ │ ├── test_loaders.py │ │ │ └── test_rfc822_loader.py │ │ ├── message/ │ │ │ ├── __init__.py │ │ │ ├── helpers.py │ │ │ ├── test_dkim.py │ │ │ ├── test_lazy_gettext.py │ │ │ ├── test_message.py │ │ │ ├── test_send.py │ │ │ ├── test_send_async.py │ │ │ ├── test_send_async_e2e.py │ │ │ └── test_template.py │ │ ├── smtp/ │ │ │ ├── test_aio_client.py │ │ │ ├── test_async_smtp_backend.py │ │ │ ├── test_factory.py │ │ │ ├── test_smtp_backend.py │ │ │ └── test_smtp_response.py │ │ ├── smtp_servers.py │ │ ├── store/ │ │ │ └── test_store.py │ │ ├── test_templates.py │ │ ├── test_utils.py │ │ └── transformer/ │ │ ├── data/ │ │ │ └── premailer_load/ │ │ │ └── style.css │ │ ├── test_parser.py │ │ └── test_transformer.py │ ├── transformer.py │ └── utils.py ├── release.sh ├── requirements/ │ ├── base.txt │ ├── tests-base.txt │ ├── tests-django.txt │ └── tests.txt ├── scripts/ │ └── make_rfc822.py ├── setup.cfg ├── setup.py └── tox.ini