Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update django-anymail to 9.2 #4316

Merged
merged 9 commits into from
May 4, 2023
18 changes: 9 additions & 9 deletions {{cookiecutter.project_slug}}/requirements/production.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,21 +24,21 @@ django-storages[google]==1.13.2 # https://github.com/jschneier/django-storages
django-storages[azure]==1.13.2 # https://github.com/jschneier/django-storages
{%- endif %}
{%- if cookiecutter.mail_service == 'Mailgun' %}
django-anymail[mailgun]==9.1 # https://github.com/anymail/django-anymail
django-anymail[mailgun]==9.2 # https://github.com/anymail/django-anymail
{%- elif cookiecutter.mail_service == 'Amazon SES' %}
django-anymail[amazon_ses]==9.1 # https://github.com/anymail/django-anymail
django-anymail[amazon_ses]==9.2 # https://github.com/anymail/django-anymail
{%- elif cookiecutter.mail_service == 'Mailjet' %}
django-anymail[mailjet]==9.1 # https://github.com/anymail/django-anymail
django-anymail[mailjet]==9.2 # https://github.com/anymail/django-anymail
{%- elif cookiecutter.mail_service == 'Mandrill' %}
django-anymail[mandrill]==9.1 # https://github.com/anymail/django-anymail
django-anymail[mandrill]==9.2 # https://github.com/anymail/django-anymail
{%- elif cookiecutter.mail_service == 'Postmark' %}
django-anymail[postmark]==9.1 # https://github.com/anymail/django-anymail
django-anymail[postmark]==9.2 # https://github.com/anymail/django-anymail
{%- elif cookiecutter.mail_service == 'Sendgrid' %}
django-anymail[sendgrid]==9.1 # https://github.com/anymail/django-anymail
django-anymail[sendgrid]==9.2 # https://github.com/anymail/django-anymail
{%- elif cookiecutter.mail_service == 'SendinBlue' %}
django-anymail[sendinblue]==9.1 # https://github.com/anymail/django-anymail
django-anymail[sendinblue]==9.2 # https://github.com/anymail/django-anymail
{%- elif cookiecutter.mail_service == 'SparkPost' %}
django-anymail[sparkpost]==9.1 # https://github.com/anymail/django-anymail
django-anymail[sparkpost]==9.2 # https://github.com/anymail/django-anymail
{%- elif cookiecutter.mail_service == 'Other SMTP' %}
django-anymail==9.1 # https://github.com/anymail/django-anymail
django-anymail==9.2 # https://github.com/anymail/django-anymail
{%- endif %}