Download the PHP package erlandmuchasaj/laravel-email-verify without Composer
On this page you can find all versions of the php package erlandmuchasaj/laravel-email-verify. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download erlandmuchasaj/laravel-email-verify
More information about erlandmuchasaj/laravel-email-verify
Files in erlandmuchasaj/laravel-email-verify
Package laravel-email-verify
Short Description Validate email addresses that they are valid and non disposable.
License MIT
Homepage https://github.com/erlandmuchasaj/laravel-email-verify
Informations about the package laravel-email-verify
Laravel Email Verify
Add a simple email verification to your Laravel application. It detects if the email is disposable (temporary/throwaway/fake) email addresses. This tool also helps to avoid communication errors and blocks spam addresses.
Installation
You can install the package via composer:
Run the command update the list of disposable domains:
Config file
Publish the configuration file using artisan.
Now you have access to the laravel-email-verify.php
configuration file in the config
directory. Here you can
configure which service to use for email verification. Defaults to kickbox
.
The only thing you need to pay attention to is the connections
key where you need to set the token for the service you are using.
You can also change the default service to use for email verification by changing the default
key.
Optionally
It's highly advised to update the disposable domains list regularly. You can either run the command yourself now and then or, if you make use of Laravel scheduler,
you can register the php artisan email-verify:update-disposable-domains
command:
In routes/console.php
:
Or if you use Laravel 10 or below, head over to the Console kernel:
Usage
Use validation rule email_verify
to check that specific field does not contain a disposable email address.
[!NOTE] ❗ Place it after the
Example:
@todo:
Add more services for email verification:
Support me
I invest a lot of time and resources into creating best in class open source packages.
If you found this package helpful you can show support by clicking on the following button below and donating some amount to help me work on these projects frequently.
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please see SECURITY for details.
Credits
License
The MIT License (MIT). Please see License File for more information.
All versions of laravel-email-verify with dependencies
guzzlehttp/guzzle Version ^6.2 || ^7.0
illuminate/config Version ^9.0|^10.0|^11.0
illuminate/contracts Version ^9.0|^10.0|^11.0
illuminate/http Version ^9.0|^10.0|^11.0
illuminate/support Version ^9.0|^10.0|^11.0
illuminate/translation Version ^9.0|^10.0|^11.0
illuminate/validation Version ^9.0|^10.0|^11.0