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

This commit is contained in:
2025-08-09 17:48:03 +02:00
parent c13ef30f69
commit a4e8231a3b

View File

@@ -1,9 +1,14 @@
import nodemailer from 'nodemailer';
import handlebars from 'handlebars';
import { readFileSync } from 'fs';
import { join } from 'path';
import { join, dirname } from 'path';
import { fileURLToPath } from 'url';
import type { SMTPConfig } from '~/utils/types';
// ES modules compatibility for __dirname
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
export interface EmailData {
to: string;
subject: string;