All checks were successful
gitea/MERN_STACK_TEMPLATE/pipeline/head This commit looks good
13 lines
268 B
JavaScript
13 lines
268 B
JavaScript
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",
|
|
}; |