├── .coveragerc ├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── codecov.yml ├── requirements-dev.txt ├── setup.cfg ├── setup.py ├── sgbackend ├── __init__.py ├── mail.py └── version.py └── tests ├── test_api_key.py ├── test_mail.py └── test_send_messages.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbuo8/sendgrid-django/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbuo8/sendgrid-django/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbuo8/sendgrid-django/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbuo8/sendgrid-django/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbuo8/sendgrid-django/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbuo8/sendgrid-django/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbuo8/sendgrid-django/HEAD/README.rst -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- 1 | coverage: 2 | range: "95..100" -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbuo8/sendgrid-django/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbuo8/sendgrid-django/HEAD/setup.py -------------------------------------------------------------------------------- /sgbackend/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbuo8/sendgrid-django/HEAD/sgbackend/__init__.py -------------------------------------------------------------------------------- /sgbackend/mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbuo8/sendgrid-django/HEAD/sgbackend/mail.py -------------------------------------------------------------------------------- /sgbackend/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbuo8/sendgrid-django/HEAD/sgbackend/version.py -------------------------------------------------------------------------------- /tests/test_api_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbuo8/sendgrid-django/HEAD/tests/test_api_key.py -------------------------------------------------------------------------------- /tests/test_mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbuo8/sendgrid-django/HEAD/tests/test_mail.py -------------------------------------------------------------------------------- /tests/test_send_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbuo8/sendgrid-django/HEAD/tests/test_send_messages.py --------------------------------------------------------------------------------