aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2024-12-10 16:58:46 +0000
committerMatthew Lemon <y@yulqen.org>2024-12-10 16:58:46 +0000
commit4a17277a507ea03ecc81cb31dd0e2e97ecbaaa07 (patch)
treed9b5ef2aadbaec4558ef64f5b7e5136417ed7709
parentdfbb7e1868d2adf8ed4a2d7cb73b54d0652b1a4b (diff)
Fix environment variable for mailgun
-rw-r--r--config/settings/production.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/settings/production.py b/config/settings/production.py
index ff9e475..eaef5dc 100644
--- a/config/settings/production.py
+++ b/config/settings/production.py
@@ -228,7 +228,7 @@ LOGGING = {
# Your stuff...
# My manual Mailgun stuff
MAILGUN_API_KEY = env("MAILGUN_API_KEY")
-MAILGUN_SENDER_DOMAIN = env("MAILGUN_DOMAIN")
+MAILGUN_SENDER_DOMAIN = env("MAILGUN_SENDER_DOMAIN")
MAILGUN_API_URL = env("MAILGUN_API_URL", default="https://api.eu.mailgun.net/v3")
USE_X_FORWARDED_HOST = True