Skip to content

Instantly share code, notes, and snippets.

View gkkirilov's full-sized avatar
🏄‍♂️
Surf the code

Georgi Kirilov gkkirilov

🏄‍♂️
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'
}
});