mojoblanco / domainos
A laravel package for blacklisting or whitelisting specific email providers or domains
Installs: 13 839
Dependents: 0
Suggesters: 0
Security: 0
Stars: 22
Watchers: 3
Forks: 5
Open Issues: 2
Type:package
Requires
- php: ~5.6|~7.0
This package is auto-updated.
Last update: 2024-11-04 21:00:34 UTC
README
A laravel package for allowing or blocking specific email domains
Installation
Open your terminal or command prompt, go to the root directory of your Laravel project, then follow the following steps.
-
Run
composer require mojoblanco/domainos
-
Add the provider to the providers array in config/app.php
If you are using laravel 5.5, you don't need to place the code below
Mojoblanco\Domainos\DomainosServiceProvider::class,
-
Run
composer dump-autoload
-
Publish the config file
php artisan vendor:publish --provider="Mojoblanco\Domainos\DomainosServiceProvider" --tag="config"
Usage
-
Go to the
config/domainos.php
file and customize it.
There are two options;block
is for blacklisting domains,allow
is for whitelisting. -
Go to the validation of the email address and add the following
'email' => 'domainos:allow'
- Test the validation
Notice
This package can be very useful when you want to prevent or allow specific email addresses during user registration.
How can you thank me?
You can like this repo, follow me on github and twitter Thanks.