Skip to content

Instantly share code, notes, and snippets.

View georgiai1's full-sized avatar
πŸ„β€β™‚οΈ
Surf the code

Georgi AI georgiai1

πŸ„β€β™‚οΈ
Surf the code
View GitHub Profile
@amitbend
amitbend / nodemailer with Zoho
Last active October 17, 2022 12:32
nodemailer with Zoho
const nodemailer = require('nodemailer');
const transporter = nodemailer.createTransport({
host: 'smtp.zoho.com',
port: 465,
secure: true, //ssl
auth: {
user: 'youremail@amitbend.com',
pass: 'yourpassword'
}
});