1.0.1 • Published 3 years ago

mailercheck v1.0.1

Weekly downloads
-
License
ISC
Repository
github
Last release
3 years ago

Mailercheck Unofficial Node.js SDK

MIT licensed

Table of Contents

Installation

Setup

npm install mailercheck

Usage

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 
}

Support and Feedback

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/

License

The MIT License (MIT)

1.0.1

3 years ago

1.0.0

3 years ago