fixes
All checks were successful
Build And Push Image / docker (push) Successful in 3m1s

This commit is contained in:
2025-08-09 17:43:15 +02:00
parent df1ff15975
commit c13ef30f69

View File

@@ -154,7 +154,9 @@ export class EmailService {
join(process.cwd(), 'server/templates', `${templateName}.hbs`),
join(process.cwd(), '.output/server/templates', `${templateName}.hbs`),
join(__dirname, '..', 'templates', `${templateName}.hbs`),
join(__dirname, '..', '..', 'server/templates', `${templateName}.hbs`)
join(__dirname, '..', '..', 'server/templates', `${templateName}.hbs`),
// Docker container path
`/app/server/templates/${templateName}.hbs`
];
let templateContent: string | null = null;