generated from tpl/purs
25 lines
391 B
Markdown
25 lines
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);
|
||
|
```
|