+ signup and + verify
All checks were successful
gitea/MERN_STACK_TEMPLATE/pipeline/head This commit looks good
All checks were successful
gitea/MERN_STACK_TEMPLATE/pipeline/head This commit looks good
This commit is contained in:
13
backend/mailtrap/mailtrap.config.js
Normal file
13
backend/mailtrap/mailtrap.config.js
Normal 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",
|
||||
};
|
Reference in New Issue
Block a user