fixes
Build And Push Image / docker (push) Successful in 2m54s Details

This commit is contained in:
Matt 2025-08-09 17:48:03 +02:00
parent c13ef30f69
commit a4e8231a3b
1 changed files with 6 additions and 1 deletions

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;