# bulk-email-verifier

> Bulk Email Verifier

Latest version **1.0.4** (published 2016-08-24) · ISC license · 0 weekly downloads

## Install

```sh
npm install bulk-email-verifier
pnpm add bulk-email-verifier
yarn add bulk-email-verifier
bun add bulk-email-verifier
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.4 |
| Published | 2016-08-24 |
| First published | 2016-08-23 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 8 |
| Author | Kapil Gupta |
| Maintainers | kapilgp |
| Keywords | bulk, email, verifier, bulk domain verification, bulk email verification of single domain |

## Links

- npm: https://www.npmjs.com/package/bulk-email-verifier
- Repository: https://github.com/kapilgp/bulk-email-verifier
- Homepage: https://github.com/kapilgp/bulk-email-verifier#readme
- Issues: https://github.com/kapilgp/bulk-email-verifier/issues
- npm.io page: https://npm.io/package/bulk-email-verifier

## Alternatives

- [@expo/fingerprint](https://npm.io/package/@expo/fingerprint.md) — 6.2M weekly downloads
- [@azure/monitor-opentelemetry-exporter](https://npm.io/package/@azure/monitor-opentelemetry-exporter.md) — 850.0K weekly downloads
- [@azure/monitor-opentelemetry](https://npm.io/package/@azure/monitor-opentelemetry.md) — 624.0K weekly downloads
- [@posthog/ai](https://npm.io/package/@posthog/ai.md) — 423.3K weekly downloads
- [fakefilter](https://npm.io/package/fakefilter.md) — 63.9K weekly downloads

## Recent versions

- 1.0.4 (latest) — 2016-08-24
- 1.0.3 — 2016-08-24
- 1.0.2 — 2016-08-24
- 1.0.1 — 2016-08-23
- 1.0.0 — 2016-08-23

## README

# bulk-email-verifier
Domain and Email verification in Node, using SMTP connection.

It verified multiple domain MX record existence and multiple emails for single domain in one run.

### Installation
```
npm install --save-dev bulk-email-verifier
```

### To Verify Domain
```
var verify = require('bulk-email-verifier');

var domains = [
    'skyfut2.com',
    'yahoomail.com', 
    'yahoo.com', 
    'gmail.com',
    'abc2.com',
    'rediff.com'
];

verify.verifyDomainsMX(domains).then(function(res) {
    console.log('Domains Status: ', res);
});
```

### To Verify Multiples emails of a single domain
```
var domain = 'gmail.com';
var emails =  [
	'test3@gmail.com',
    'test1@gmail.com',
    'test2@gmail.com'
];

verify.verifyEmails(domain, emails, {}, function(err, data){
    console.log("Email Stats: ", err, data);	
});

```

### Feedback

Pull requests, feature ideas and bug reports are welcome

### License

MIT

---
_Source: https://npm.io/package/bulk-email-verifier · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
