Metadata-Version: 2.4
Name: django-darthmail
Version: 0.5.0
Summary: Client for the DarthMail project
Author: RegioHelden GmbH
Author-email: entwicklung@regiohelden.de
License: MIT
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Communications :: Email
Requires-Python: >=3.13
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: django>=5.1
Requires-Dist: requests>=2.32.2
Requires-Dist: pillow>=11.0.0
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: license
Dynamic: license-file
Dynamic: requires-dist
Dynamic: summary

# 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

[bump-my-version](https://github.com/callowayproject/bump-my-version) is used to manage releases.

After reaching a releasable state, run `pipx run bump-my-version bump <patch|minor|major> --message="feat: release x, refs y`

This will update the release version in `.bumpversion.toml` and the CI/CD pipelines do the rest.
