mirror of
https://github.com/retspen/webvirtcloud
synced 2024-12-25 07:35:22 +00:00
add email config template
This commit is contained in:
parent
773709ce57
commit
51b12a8dec
1 changed files with 8 additions and 0 deletions
|
@ -273,6 +273,14 @@ OTP_ENABLED = False
|
|||
|
||||
LOGIN_REQUIRED_IGNORE_VIEW_NAMES = ["accounts:login", "accounts:email_otp"]
|
||||
|
||||
# EMAIL Config
|
||||
EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
|
||||
EMAIL_HOST = 'smtp.gmail.com'
|
||||
EMAIL_USE_TLS = True
|
||||
EMAIL_PORT = 587
|
||||
EMAIL_HOST_USER = #sender's email-id
|
||||
EMAIL_HOST_PASSWORD = #password associated with above email-id
|
||||
|
||||
# LDAP Config
|
||||
#
|
||||
|
||||
|
|
Loading…
Reference in a new issue