Checks if an email is a business email from a list of 15,000 emails.
Our package is quite simple: it has a list of more than 15,000 email providers list that are used by the public. When you give us an email, we just look if it's in our list. If it is in the list, that means it's a regular public email(eg. gmail.com, yahoo.com, outlook.com, and etc 15k+) not a business one. For example, if you give us "xyz@gmail.com", it's not a business email. It's just normal check. It's not email Auth or SMTP verification tool.
Public email are mail account that are not connected or acociated with company for example any email account that is end with gmail. com or yahoo Or with public email providers (gmail.com, outlook, orkut, and etc...15k+).
Email account accociated with business domains eg. grapdevs.com ,somecompany.com,xyzcompany.in and etc...
npm i @myselfraj/is-business-mail
import {isBusinessMail } from '@myselfraj/is-business-mail'
console.log(isBusinessMail('test@myselfraj.com')) //returns => true (it is business mail)
console.log(isBusinessMail('test@somebusines.com')) //returns => true (it is business mail)
console.log(isBusinessMail('test@gmail.com')) //returns => false (not business mail)
console.log(isBusinessMail('test@orkut.com')) //returns => false (not business mail)
console.log(isBusinessMail('abc@orkut.com')) //returns => false (not business mail)
isBusinessMail() => Accept email of string type and return boolean