Browse Source

we add some lines for emailing possibilities

pull/250/head
Guillim 5 years ago
parent
commit
3038639092
1 changed files with 10 additions and 0 deletions
  1. 10
      app/app/settings.py

10
app/app/settings.py

@ -269,3 +269,13 @@ AZURE_APPINSIGHTS_IKEY = env('AZURE_APPINSIGHTS_IKEY', None)
APPLICATION_INSIGHTS = {
'ikey': AZURE_APPINSIGHTS_IKEY if AZURE_APPINSIGHTS_IKEY else None,
}
## necessary for email verification setup
# EMAIL_USE_TLS = True
# EMAIL_HOST = 'smtp.gmail.com'
# EMAIL_HOST_USER = 'random@gmail.com'
# EMAIL_HOST_PASSWORD = 'gfds6jk#4ljIr%G8%'
# EMAIL_PORT = 587
#
## During development only
# EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'
Loading…
Cancel
Save