CoolFace
Apppublic

anas044/attendance-nodejs

sourceHugging Faceupdated 9mo agoView on Hugging Face
0likes
mail.js16 linesDownload Raw Back to utils
1const nodemailer = require('nodemailer');2require('dotenv').config();3 4exports.transporter = nodemailer.createTransport({5    host: "smtp.gmail.com",6    port: 465,7    secure: true, 8    auth: {9      user: process.env.EMAIL_USER,10      pass: process.env.EMAIL_PASS11    },12 13    tls: {14        rejectUnauthorized: false15    }16});