Download the PHP package idf/laravel-real-email-validation without Composer
On this page you can find all versions of the php package idf/laravel-real-email-validation. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download idf/laravel-real-email-validation
More information about idf/laravel-real-email-validation
Files in idf/laravel-real-email-validation
Package laravel-real-email-validation
Short Description A Laravel rule for performing email addresses validation via regex and DNS checks
License MIT
Homepage https://github.com/InteractionDesignFoundation/laravel-real-email-validation
Informations about the package laravel-real-email-validation
Real email validation for Laravel
⚠️ This feature is available in Laravel from v5.8.33 (see PR) and thus this package is deprecated. By default, this package uses
['html5', 'rfc', 'host']
validation rules, you can replace it by['email:rfc,dns']
. Unfortunately, Laravel doesn't providehtml5
validation. Read more about Laravel email validation.
Laravel has a good email
validation rule, but it can miss some invalid email addresses.
This packages aims to cover more cases.
Installation
You can install the package via composer:
The package will automatically register itself.
Translations
If you wish to edit the package translations, you can run the following command to publish them into your resources/lang
folder
Usage
By default it uses the following checks: html5
, rfc
, host
, but you can define your set:
html5
: Uses regex pattern for rules defined by WHATWG. Browsers use it forinput[type="email"]
.rfc
: Strict RFC validation. Check against RFC 5321, 5322, 6530, 6531, 6532, treats warnings as errors.host
: Checks DNS Records for the host extracted from email address. Uses network.mx
: Check DNS Records for MX type only. ⚠️ This option is not reliable because it depends on the network conditions and some valid servers refuse to respond to those requests.
Testing
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
Credits
- All Contributors
- Symfony validation (for inspiration)
License
The MIT License (MIT). Please see License File for more information.
All versions of laravel-real-email-validation with dependencies
egulias/email-validator Version ^2.1.11
illuminate/validation Version ^5.8
symfony/polyfill-intl-idn Version ^1.12