Skip to content

Instantly share code, notes, and snippets.

View nhh183's full-sized avatar

Nguyễn Hoàng Huy nhh183

View GitHub Profile
@nhh183
nhh183 / mail.js
Last active October 12, 2025 11:19
Send mail via SMTP
import nodemailer from 'nodemailer'
let transporter = nodemailer.createTransport({
host: "smtp.gmail.com",
port: 465,
secure: true,
auth: {
user: process.env.MAIL_USER,
pass: process.env.MAIL_PASS,
},