Metadata-Version: 2.1
Name: django-darthmail
Version: 0.3.0
Summary: Client for the DarthMail project
Home-page: https://github.com/regiohelden/django-darthmail
Author: RegioHelden GmbH
Author-email: entwicklung@regiohelden.de
License: BSD-3-Clause
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: Django
Classifier: Framework :: Django :: 2.2
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Communications :: Email
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: django >=4.2
Requires-Dist: requests >=2.31.0

# django-darthmail

Module for using darthmail as an EMAIL\_BACKEND in Django.

# Settings

```python
EMAIL_BACKEND = 'django_darthmail.backends.DarthMailBackend'
EMAIL_DARTHMAIL_URL = 'https://some.darthmail.instance.url'
EMAIL_DARTHMAIL_TOKEN = 'someauthtoken'
EMAIL_DARTHMAIL_FALLBACK = 'django.core.mail.backends.smtp.EmailBackend'
```

# Making a new release

[bumpversion](https://github.com/peritus/bumpversion) is used to manage releases.

After reaching a releasable state, run `bumpversion <major|minor|patch>`

When the tag is pushed, the release will be done by the GitHub actions
