fix(install): correct mail template directory path

Change ACKIFY_MAIL_TEMPLATE_DIR from 'templates/emails' to 'templates'
to match actual directory structure where templates are in /app/templates.
This commit is contained in:
Benjamin
2025-11-05 23:44:42 +01:00
parent 4269b66c18
commit e71528a76b
2 changed files with 2 additions and 2 deletions

View File

@@ -87,7 +87,7 @@ ACKIFY_OAUTH_CLIENT_SECRET=your_oauth_client_secret
# ACKIFY_MAIL_TIMEOUT=10s
# Email Template Configuration
# ACKIFY_MAIL_TEMPLATE_DIR=templates/emails
# ACKIFY_MAIL_TEMPLATE_DIR=templates
# ACKIFY_MAIL_DEFAULT_LOCALE=en
# ACKIFY_MAIL_SUBJECT_PREFIX=[Ackify]

View File

@@ -420,7 +420,7 @@ ACKIFY_MAIL_FROM_NAME=${MAIL_FROM_NAME}
ACKIFY_MAIL_TLS=${MAIL_TLS}
ACKIFY_MAIL_STARTTLS=${MAIL_STARTTLS}
ACKIFY_MAIL_TIMEOUT=10s
ACKIFY_MAIL_TEMPLATE_DIR=templates/emails
ACKIFY_MAIL_TEMPLATE_DIR=templates
ACKIFY_MAIL_DEFAULT_LOCALE=en
EOF