blob: 940a33e2fc1d26fd692ddf86a0f80a147170ad92 (
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 smtp host name'
EMAIL_PORT = 'PORT Number'
EMAIL_HOST_USER = 'your username'
EMAIL_HOST_PASSWORD = 'your password'
EMAIL_USE_TLS = True
SENDER_EMAIL = 'your email address'
|