"Update email settings to use SSL on port 465

Switched EMAIL_PORT to 465 and enabled SSL while disabling TLS for secure email transmission. This aligns with updated server requirements for email configuration."
main
Arne Schauf 2 weeks ago
parent bac5416cac
commit 21a67afc27
  1. 6
      feo_homepage/settings/prod.py

@ -18,10 +18,10 @@ EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
EMAIL_HOST = 'mail.asw.io'
EMAIL_HOST_PASSWORD = '409ce4f17e2447e1b0a5879e55d6c04a'
EMAIL_HOST_USER = 'service@feo.gmbh'
EMAIL_PORT = 993
EMAIL_PORT = 465
EMAIL_SUBJECT_PREFIX = '[FEO GmbH] '
EMAIL_USE_TLS = True
EMAIL_USE_SSL = False
EMAIL_USE_TLS = False
EMAIL_USE_SSL = True
try:
from .local import *

Loading…
Cancel
Save