Giter Site home page Giter Site logo

tobischulz / trashmail-checker Goto Github PK

View Code? Open in Web Editor NEW
2.0 2.0 0.0 14 KB

Validates email addresses of known trashmail providers to keep away untrusted registrations.

PHP 100.00%
trashmail laravel validation rule disposable-emails email-validation

trashmail-checker's Introduction

Trashmail Checker

Latest Version on Packagist Total Downloads

Validates email addresses of known trashmail/temporary mail/disposable mail providers, managed by your own database, to keep away unserious registrations.

Installation

You can install the package via composer:

composer require tobischulz/trashmail-checker

Publish all required assets:

php artisan vendor:publish --provider=TobiSchulz\TrashmailChecker\TrashmailCheckerServiceProvider

Migrate your database:

php artisan migrate

Usage

Validation Rule

use TobiSchulz\TrashmailChecker\Rules\NoTrashmail;

class ValidateEmailController extends Controller
{
    public function __invoke(Request $request)
    {
        $request->validate([
            'email' => ['required', 'email', 'bail', new NoTrashmail],
        ]);
    }
}

Facade

use TobiSchulz\TrashmailChecker\Facade\TrashmailChecker;

TrashmailChecker::check('[email protected]');

Configuration

TrashmailChecker would let you disable the email check in development (env= local) by setting key TRASHMAIL_IN_DEVELOPMENT to false in your .env file.

TRASHMAIL_IN_DEVELOPMENT=false

Testing

composer test

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

License

The MIT License (MIT). Please see License File for more information.

trashmail-checker's People

Contributors

tobischulz avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.