Implement backend email templates

This commit is contained in:
Wolfgang Huß 2021-09-29 11:32:08 +02:00
parent c8a6f05eda
commit 07d1bb65b8
4 changed files with 5 additions and 1 deletions

1
branding/email/.gitkeep Normal file
View File

@ -0,0 +1 @@
we can put multilanguage e-mails and a layout.html in here

View File

@ -0,0 +1 @@
we can put translated e-mails in here

View File

@ -0,0 +1 @@
we can put translated e-mails in here

View File

@ -9,10 +9,11 @@ ARG APP_IMAGE_CODE=${APP_IMAGE}:${APP_IMAGE_TAG_CODE}
##################################################################################
FROM $APP_IMAGE_CODE as code
# copy public constants into the Docker image to brand it
# copy public constants and email templates into the Docker image to brand it
COPY branding/constants/emails.js src/config/
COPY branding/constants/logos.js src/config/
COPY branding/constants/metadata.js src/config/
COPY branding/email/ src/middleware/helpers/email/
##################################################################################
# BUILD ##########################################################################