feat: Send welcome email from template

This commit is contained in:
James Graham
2020-04-28 15:17:58 +01:00
parent a39cf0e7ca
commit 567322c0af
6 changed files with 100 additions and 1 deletions

View File

@@ -157,6 +157,7 @@ THIRD_PARTY_APPS = [
'django_countries',
'django_select2',
'rest_framework',
'post_office',
]
FIRST_PARTY_APPS = [
@@ -378,12 +379,15 @@ else:
# Import customisation app settings if present
CUSTOMISATION_NAME = None
TEMPLATE_NAME_INDEX = 'index.html'
TEMPLATE_WELCOME_EMAIL_NAME = 'welcome-email'
try:
from custom.settings import (
CUSTOMISATION_NAME,
TEMPLATE_NAME_INDEX
TEMPLATE_NAME_INDEX,
TEMPLATE_WELCOME_EMAIL_NAME
)
logger.info("Loaded customisation app: %s", CUSTOMISATION_NAME)