1.0.1 • Published 6 years ago

smtp-auth v1.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

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("test@extmail.org", "test").then(() => {
  console.log("login success")
}).catch((err) => {
  console.log("login fail: ", err)
});
1.0.1

6 years ago

1.0.0

6 years ago