node.js - Send Nodemailer e-mail with Namecheap email -


i have been successful connecting gmail account xoauth, acquired namecheap privateemail account , can't life of me figure out how set up. code have:

var smtp = nodemailer.createtransport({     host: 'mail.privateemail.com',     port: 25,     auth: {         user: 'contact@myemail.com',         pass: 'mypassword'     } }); 

i saw this question , tried other port numbers.

it may secured connection in case port should 465

465 port ssl, 25 or 26 tls/starttls


Comments

Popular posts from this blog

javascript - How do you prevent nested queries/catches in sequelize? -

java - Could not retrieve pre-bound Hibernate session - Could not obtain transaction-synchronized Session for current thread -

ruby on rails - ActiveRecord order not working -