purescript-email-address/qed-mail/README.md

25 lines
391 B
Markdown
Raw Permalink Normal View History

2024-02-07 21:23:45 +00:00
<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);
```