From 43ef67c8d73f4074cb5f3cc1163cc3921e1d0c08 Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Sat, 9 Jan 2021 19:54:31 -0700 Subject: [PATCH] deps: move to django-anymail :crossed-fingers: --- config/settings/production.py | 8 +++++--- requirements/production.txt | 4 +--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/config/settings/production.py b/config/settings/production.py index a890ea9..6335c12 100644 --- a/config/settings/production.py +++ b/config/settings/production.py @@ -35,11 +35,13 @@ MEDIA_URL = 'https://s3.amazonaws.com/%s/' % AWS_STORAGE_BUCKET_NAME STATICFILES_STORAGE = 'whitenoise.django.GzipManifestStaticFilesStorage' +ANYMAIL = { + MAILGUN_API_KEY: env('DJANGO_MAILGUN_API_KEY') + MAILGUN_SENDER_DOMAIN: env('DJANGO_MAILGUN_SERVER_NAME') +} DEFAULT_FROM_EMAIL = env('DJANGO_DEFAULT_FROM_EMAIL', default='CCDB Admin ') -EMAIL_BACKEND = 'django_mailgun.MailgunBackend' -MAILGUN_ACCESS_KEY = env('DJANGO_MAILGUN_API_KEY') -MAILGUN_SERVER_NAME = env('DJANGO_MAILGUN_SERVER_NAME') +EMAIL_BACKEND = 'anymail.backends.mailgun.EmailBackend' EMAIL_SUBJECT_PREFIX = env("DJANGO_EMAIL_SUBJECT_PREFIX", default='[ccdb] ') SERVER_EMAIL = env('DJANGO_SERVER_EMAIL', default=DEFAULT_FROM_EMAIL) diff --git a/requirements/production.txt b/requirements/production.txt index ba21f2c..015cfd5 100644 --- a/requirements/production.txt +++ b/requirements/production.txt @@ -7,6 +7,4 @@ gunicorn==19.7.1 # Static and Media Storage boto==2.48.0 django-storages-redux==1.3.3 - -# Mailgun Support -django-mailgun>=0.9.1 +django-anymail[mailgun]