Mailercheck Unofficial Node.js SDK
npm install mailercheck
Check a single email and get real-time response
const MailerCheck = require('../index')
const mailercheck = new MailerCheck(
{
api_key: "api_key"
}
)
mailercheck.checkEmail("test@mailercheck.com")
.then((response) => {
console.log(response)
})
.catch(err => {
console.log(err)
})
Response
{
message: 'valid',
status: 200
}
In case you find any bugs, submit an issue directly here in GitHub.
If you have any troubles using our API or SDK free to contact our support here: https://www.mailercheck.com/support
The official documentation is at https://developers.mailercheck.com/