smtp-auth
v1.0.1
Published
Auth user from smtp server
Downloads
5
Readme
node-smtp-auth
Auth user from smtp server
more info: 使用SMTP服务进行用户登录认证
Install
$ npm install smtp-auth --save
How to use
const SMTPAuth = require("smtp-auth");
const client = new SMTPAuth({
host: "smtp.163.com",
port: 25,
});
client.auth("[email protected]", "test").then(() => {
console.log("login success")
}).catch((err) => {
console.log("login fail: ", err)
});