-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
A mail will be sent when a new user registered (this implements #57) Prepare mail sending by introducing required settings for dev and production, including entries in the matching secrets sample file (this finishes the implementation parts of #69)
- Loading branch information
1 parent
d66c6cc
commit a9bad50
Showing
4 changed files
with
56 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -159,3 +159,9 @@ | |
|
||
LOGIN_URL = "/accounts/login/" | ||
LOGIN_REDIRECT_URL = "/intern/" | ||
|
||
# Emails | ||
SEND_MAILS = True | ||
EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend' | ||
ADMIN_MAILS = ['[email protected]'] | ||
DEFAULT_FROM_EMAIL = '[email protected]' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters