+ signup and + verify
All checks were successful
gitea/MERN_STACK_TEMPLATE/pipeline/head This commit looks good

This commit is contained in:
2025-05-02 22:19:30 +02:00
parent 7333cf79bd
commit 3f76d4f3d4
12 changed files with 589 additions and 22 deletions

View File

@ -0,0 +1,13 @@
import { MailtrapClient } from "mailtrap"
import dotenv from "dotenv";
dotenv.config();
export const mailtrapClient = new MailtrapClient({
token: process.env.MAILTRAP_TOKEN,
});
export const sender = {
email: "hello@demomailtrap.co",
name: "Mailtrap Test",
};