ctf0/email-validator

validation rule to validate email for Laravel

Fund package maintenance!
ctf0

v1.0.7 2020-12-01 15:54 UTC

This package is auto-updated.

Last update: 2024-03-30 00:37:20 UTC


README

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 ctf0-dev@protonmail.com.