smtp django settings
May
11
1
0
I have to go trolling the internet every time I need to locate the default email variables that I need to set up the SMTP connection the settings file for Django, so I'm throwing them here for reference. Perhaps someone else might also find this useful.
EMAIL_HOST = 'mail.digitaldreamer.net' EMAIL_HOST_USER = '*****' EMAIL_HOST_PASSWORD = '******' EMAIL_PORT = '25' DEFAULT_FROM_EMAIL = "test@example.com" SERVER_EMAIL = "test@example.com"