PHP code example of veeqtoh / laravel-active-email

1. Go to this page and download the library: Download veeqtoh/laravel-active-email library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

veeqtoh / laravel-active-email example snippets


'emailField' => 'email|notblacklisted',

'emailField' => ['email', 'notblacklisted'],

use Veeqtoh\ActiveEmail\Rules\NotBlackListedEmail;

'emailField' => ['email', new NotBlackListedEmail()],

DISPOSABLE_EMAIL_STRICT_MODE=true,
bash
php artisan vendor:publish --provider="Veeqtoh\ActiveEmail\Providers\ActiveEmailProvider"