django-newsletter
django-newsletter copied to clipboard
An email newsletter application for the Django web application framework, including an extended admin interface, web (un)subscription, dynamic e-mail templates, an archive and HTML email support.
Hi, The latest version of django-newsletter doesn't work with Django 4.1. I got this error: `ImportError: cannot import name 'ugettext_lazy' from 'django.utils.translation'` I fixed it by replacing deprecated ugettext_lazy to...
After following the installation steps through to getting logged in, creating a user, creating a newsletter, then trying to add a message, I got an error that Message needs a...
The `{% include thumbnail_template %}` tag in message's html template raised an error because it could not find the `thumbnail_template` in the context. This happened when trying to send the...
I just submitted a PR https://github.com/jazzband/django-newsletter/pull/391 and the tests cover python 3.7 to 3.10 and Django 2.2 to 3.2. Can Python versions 3.11 and 3.12 and Django versions 4 and...
To address this deprecation warning https://github.com/jazzband/django-newsletter/issues/390 I changed from `pkg_resources` to `importlib`. Since `importlib` is available since Python 3.8 and django-newsletter supports Python 3.7, I included a conditional import which...
I just upgraded to Python 3.12 and I'm getting a deprecation warning about `pkg_resources` ``` .../newsletter/__init__.py:1: DeprecationWarning: pkg_resources is deprecated as an API. See https://setuptools.pypa.io/en/latest/pkg_resources.html from pkg_resources import get_distribution, DistributionNotFound...
After following the [installation instructions](https://django-newsletter.readthedocs.io/en/latest/installation.html) through step 11, the command ``` ./manage.py submit_newsletter -v 2 ``` Yields the following stack trace: ``` Traceback (most recent call last): File "/Users/ricopicone/anaconda3/envs/prrparty/lib/python3.13/site-packages/django/template/backends/django.py", line...
changed NAME to SLUG
Update python and django versions - dropped tests for Python