django-herald
django-herald copied to clipboard
A Django messaging library
The issue occurs when `herald.contrib.auth` is added to `INSTALLED_APPS`. The issue only occurs in django versions 3.2 or above. Here's the traceback when running the tests: ```bash Traceback (most recent...
The current version of django-herald doesn't work with django 4. This PR aims to update `herald` to work with django 4 while keeping backwards compatibility. The app `herald.contrib.auth` wouldn't work...
@raiderrobert I was wondering if we could get a release of 0.3.0 with the new HTML2Text support pushed to PyPI?
Currently an exception is only raised if debug is `True`, however the web app may be built as a container in CD, resulting in the process of generating the templates...
Django allows passing in the `connection` param to use single connection for sending multiple emails. It'll be helpful for `django-herald` to add the support
I'm trying to send an email to a group of users with the same template and context and they can't be in the same message so I tried using bcc...
Right now, each notification class basically does it all. It specifies WHAT to send and HOW to send it. I think it would be a much more flexible API if...
At the moment, Herald is squarely a Django package. However, there may be some benefit in making it less dependent on Django specifically and more dependent on having specific components...