PHPackages                             noroman/check-email - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Validation &amp; Sanitization](/categories/validation)
4. /
5. noroman/check-email

AbandonedArchivedLibrary[Validation &amp; Sanitization](/categories/validation)

noroman/check-email
===================

Проверка email на существование

v0.0.1(8y ago)030MITPHPPHP &gt;=5.0.0

Since Jul 27Pushed 8y agoCompare

[ Source](https://github.com/NovikovRoman/CheckEmail)[ Packagist](https://packagist.org/packages/noroman/check-email)[ RSS](/packages/noroman-check-email/feed)WikiDiscussions master Synced 4w ago

READMEChangelogDependenciesVersions (2)Used By (0)

CheckEmail
==========

[](#checkemail)

```
require_once __DIR__ . '/vendor/autoload.php';
use CheckEmail\CheckEmail;

$domainsExcluded = include __DIR__ . '/domainsExcluded.php';
$domainsTemporary = include __DIR__ . '/domainsTemporary.php';

$email = 'info@ya.ru';
$ce = new CheckEmail($email);
$ce->addDomainTemporary($domainsTemporary)->addDomainExcluded($domainsExcluded);
if ($ce->check()) {
    echo $email . ' exists';
} else {
    echo $email . ' not exists';
}
```

With debug logs

```
require_once __DIR__ . '/vendor/autoload.php';
use CheckEmail\CheckEmail;

$domainsExcluded = include __DIR__ . '/domainsExcluded.php';
$domainsTemporary = include __DIR__ . '/domainsTemporary.php';

$email = 'info@ya.ru';
$ce = new CheckEmail($email);
$ce->addDomainTemporary($domainsTemporary)->addDomainExcluded($domainsExcluded);
$ce->setDebug();
if ($ce->check()) {
    echo $email . ' exists';
} else {
    echo $email . ' not exists';
    print_r($ce->getLogs());
}
```

###  Health Score

22

—

LowBetter than 21% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity48

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

3260d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/7c6eaa92f95c851aa5b48a6e3f1e442a6bb2948c1dd0fc776f57c5a580696849?d=identicon)[noRoman](/maintainers/noRoman)

---

Top Contributors

[![NovikovRoman](https://avatars.githubusercontent.com/u/3408163?v=4)](https://github.com/NovikovRoman "NovikovRoman (1 commits)")

### Embed Badge

![Health badge](/badges/noroman-check-email/health.svg)

```
[![Health](https://phpackages.com/badges/noroman-check-email/health.svg)](https://phpackages.com/packages/noroman-check-email)
```

###  Alternatives

[chaoswey/taiwan-id-validator

台灣身分證、統一編號驗證

319.9k](/packages/chaoswey-taiwan-id-validator)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
