propaganistas/laravel-disposable-email
最新稳定版本:2.4.22
Composer 安装命令:
composer require propaganistas/laravel-disposable-email
包简介
Disposable email validator
README 文档
README
Adds a validator to Laravel for checking whether a given email address isn't originating from disposable email services such as Mailinator, Guerillamail, ...
Uses the disposable domains blacklist from disposable/disposable by default.
Installation
-
Run the Composer require command to install the package. The service provider is discovered automatically.
composer require propaganistas/laravel-disposable-email
-
Publish the configuration file and adapt the configuration as desired:
php artisan vendor:publish --tag=laravel-disposable-email
-
(optional) In your languages directory, add for each language an extra language line for the validator:
'indisposable' => 'Disposable email addresses are not allowed.',
-
(optional) This package receives a weekly patch release containing updates to the built-in disposable domains list. If you are not able to bump your installed version accordingly, or just want to stay ahead of things, make sure to update the domains list yourself at any interval you like by running or scheduling the
disposable:updatecommand:// routes/console.php use Illuminate\Support\Facades\Schedule; Schedule::command('disposable:update')->daily();
Usage
Use the indisposable validator to ensure a given field doesn't hold a disposable email address. You'll probably want to add it after the email validator to make sure a valid email is passed through:
'field' => 'email|indisposable',
Custom fetches
By default the package retrieves a new list by using file_get_contents().
If your application has different needs (e.g. when behind a proxy) please review the disposable-email.fetcher configuration value.
统计信息
- 总下载量: 2.28M
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 568
- 点击次数: 2
- 依赖项目数: 9
- 推荐数: 1
其他信息
- 授权协议: MIT
- 更新时间: 2026-01-04