1.1.5 • Published 1 year ago

@epiccarlito/emailchecker v1.1.5

Weekly downloads
-
License
ISC
Repository
github
Last release
1 year ago

EmailChecker

A simple way to check if an email exists! You can also check the domain of the email with the second parameter. Warning: Port 25 must be allowed! (Or email checks return false)

Installation

npm i @epiccarlito/emailchecker

TypeScript

import { checkEmail } from "@epiccarlito/emailchecker";

JavaScript

const { checkEmail } = require("@epiccarlito/emailchecker");

Example Code

async function main() {
	let result = await checkEmail("exampleemail@gmail.com", "gmail.com");
	return result;
}
main(); // Returns false

Original Concept

Inspired by email-existence. Both packages check the codes of the MX server to identify if an email address accepts emails and exists.

1.1.5

1 year ago

1.1.4

1 year ago

1.1.3

1 year ago

1.1.2

1 year ago

1.1.1

1 year ago

1.1.0

1 year ago

1.0.8

2 years ago

1.0.7

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago