EmailValidator

validation rule to validate email for Laravel

MIT License

Downloads
2.3K
Stars
16
Committers
1

also check https://github.com/mailcheck/mailcheck & for vue https://github.com/ctf0/mailcheck-vue

Installation

  • composer require ctf0/email-validator

  • add the service provider to config/app.php

    'providers' => [
        ctf0\EmailValidator\MailGunValidatorServiceProvider::class,
        // ctf0\EmailValidator\EguliasValidatorServiceProvider::class,
        // ctf0\EmailValidator\ValidatorPizzaServiceProvider::class,
    ]
    

Usage

  • add the rule to the validator

    'email' => 'required|email|isValid'
    
  • add the translation keys

    'custom' => [
        // ...
        'email' => [
            'isValid' => 'This :attribute is invalid',
        ],
    ],
    

Security

If you discover any security-related issues, please email [email protected].