mirror of
https://github.com/supleed2/ELEC60013-ES-CW1.git
synced 2024-11-10 01:35:50 +00:00
9 lines
225 B
Python
9 lines
225 B
Python
|
# App config file with various variables and settings
|
||
|
|
||
|
# Email config
|
||
|
MAIL_SERVER = 'smtp.gmail.com'
|
||
|
MAIL_PORT = 465
|
||
|
MAIL_USERNAME = 'legbarkr@gmail.com'
|
||
|
MAIL_PASSWORD = '!Password123'
|
||
|
MAIL_USE_TLS = False
|
||
|
MAIL_USE_SSL = True
|