You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PLATFORM_SMTP_PORT isn't a Platform.sh/Upsun provided environment variable.
As such, my PR only sets EMAIL_HOST and EMAIL_PORT if the PLATFORM_SMTP_HOST is available. I've also gone ahead and set EMAIL_PORT to a static value of 25.
What in this template can be improved or added as a feature?
Currently the settings.py is missing settings for email:
https://docs.djangoproject.com/en/4.0/topics/email/
What exactly should be updated?
EMAIL_HOST = os.getenv("PLATFORM_SMTP_HOST")
EMAIL_PORT = os.getenv("PLATFORM_SMTP_PORT", 25)
How important is this feature to you?
Not a blocker
Additional context
No response
The text was updated successfully, but these errors were encountered: