Thanks to visit codestin.com
Credit goes to github.com

Skip to content

isBizMail tells you whether a given email address belongs to a free email account provider (gmail.com, yahoo.es, yandex.ru etc) or not.

License

Notifications You must be signed in to change notification settings

salaros/is-biz-mail-js

Repository files navigation

Business Email Checker

Build Status Coverage Status Inline docs Known Vulnerabilities Code Climate maintainability

License js type npm npm npm npm bundle size (minified + gzip)

Donate Patreon Donate Paypal Donate Liberapay

isBizMail tells you whether a given email address is free (gmail.com, yahoo.es, yandex.ru etc) or not. Detects around 4-5k domains and sub-domains.

Under the hood isBizMail mostly relies on 3-rd party domain lists created by people and organizations mentioned in Credits section.

Looking for PHP, .NET etc?

🟊🟊🟊 Support this project 🟊🟊🟊

You can support us in a small way, please consider starring and sharing this repo! It helps us getting known and grow the community.

star us

Installation

You can install isBizMail for JavaScript via your prefered dependency manager, e.g. PNMP, Yarn etc

npm i @salaros/is-biz-mail # pnpm add @salaros/is-biz-mail

or via Yarn

yarn add @salaros/is-biz-mail

Vanilla

One of examples of vanilla JavaScript usage might be a simple HTML page:

<script src="https://cdn.jsdelivr.net/npm/@salaros/is-biz-mail@latest/dist/isBizMail.iife.js"></script>
<script>
    var email = '[email protected]';
    var result = new isBizMail().isFree(email);
    console.log([email, result]); // (2)Β ["[email protected]", false], because *.onmicrosoft.com is considered a free domain
</script>

TS / ESM

import IsBizMail from '@salaros/is-biz-mail';
const isBizMail = new IsBizMail();

const email = '[email protected]';
const result = isBizMail.isFree(email);
console.log([email, result]); // (2)Β ["[email protected]", true]
// ...

CommonJS, Node.js etc

const IsBizMail = require('@salaros/is-biz-mail');
const isBizMail = new IsBizMail();

const email = '[email protected]';
const result = isBizMail.isFree(email);
console.log([email, result]); // (2)Β ["[email protected]", true]
// ...

Testing: Jest

npm install # pnpm/yarn install
npm test    # pnpm/yarn test

Credits

Sponsor this project

Packages

No packages published

Contributors 2

  •  
  •