edited mailer and changed orchestration

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
2026-04-26 21:52:35 +02:00
parent 5191871681
commit 4291552b6d
14 changed files with 348 additions and 316 deletions
+13
View File
@@ -0,0 +1,13 @@
import nodemailer from "nodemailer";
import dotenv from "dotenv";
dotenv.config();
export const transporter = nodemailer.createTransport({
host: process.env.MAIL_HOST,
port: process.env.MAIL_PORT,
secure: true,
auth: {
user: process.env.MAIL_USER,
pass: process.env.MAIL_PASSWORD,
},
});