qed-mail
Version:
📮 A NodeJS library for checking if an email address exists without sending any email.
25 lines (15 loc) • 391 B
Markdown
<br />
<h1 align="center">qed-mail</h1>
<h4 align="center">A NodeJS library for checking if an email address exists without sending any email.</h4>
<br /><br />
## Get Started
### Install
Use `npm` to install this package.
```bash
npm install --save-dev qed-mail
```
### Example
```ts
import qedmail from "qed-mail";
qedmail.checkEmail("example@example.com").then(console.log);
```