blob: cebe07c989f93ffcef064af9355628b4665d2092 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#This file contains all information related to admin credentials for email,
# db etc.
EMAIL_HOST = 'YOUR HOST'
EMAIL_PORT = 'YOUR HOST PORT'
EMAIL_HOST_USER = 'Your mail'
EMAIL_HOST_PASSWORD = 'Your Password'
EMAIL_USE_TLS = True
SENDER_EMAIL = 'YOUR PRODUCTION MAIL'
|