lukaswhite/laravel-email-checker
Composer 安装命令:
composer require lukaswhite/laravel-email-checker
包简介
A Laravel package that checks e-mail addresses to see if they're disposable, are on a domain that's been blacklisted or from a provider of free addresses
README 文档
README
A Laravel package for checking e-mail addresses; to see if they've been issued by a provider of free/throwaway/disposable addresses, or are on a domain that's been blacklisted.
You may find it useful to try to combat spam and fake accounts; it ought to be straightforward to integrate it into the registration process.
Usage
The package needs to download the data provided by the freemail project. It's a very quick process; it just needs to know where to put the files.
By default, it'll put them in a directory named email-checker on your local disk, but feel free to tweak that. Just publish the config file:
php artisan vendor:publish --provider="Lukaswhite\LaravelEmailChecker\LaravelEmailCheckerServiceProvider"
Alternatively, simply add an entry to your .env file named EMAIL_CHECKER_DIRECTORY.
Then simply run the following command:
php artisan email-checker:install
Now you can check an e-mail address using the façade:
use Lukaswhite\LaravelEmailChecker\LaravelEmailChecker; $result = LaravelEmailChecker::check('spammer@spammy.spam');
This returns an object with the following methods:
$result->isDisposable(); // true|false $result->isFree(); // true|false $result->isBlacklisted(); // true|false
Updating the Data
To ensure the data's up-to-date, simply run the following command. It should only take a few seconds, network speed permitting:
php artisan email-checker:update
lukaswhite/laravel-email-checker 适用场景与选型建议
lukaswhite/laravel-email-checker 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 57 次下载、GitHub Stars 达 1, 最近一次更新时间为 2022 年 08 月 05 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 lukaswhite/laravel-email-checker 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 lukaswhite/laravel-email-checker 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 57
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 13
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-08-05