PHP code example of erlandmuchasaj / laravel-email-verify

1. Go to this page and download the library: Download erlandmuchasaj/laravel-email-verify 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/ */

    

erlandmuchasaj / laravel-email-verify example snippets


'connections' => [
        'kickbox' => [
            'domain' => 'https://open.kickbox.io/v1/disposable/',
            'email' => 'https://api.eu.kickbox.com/v2/verify',
            'key' => 'your-kickbox-api-key',
        ],
        
        //

    ],

    /*
    |--------------------------------------------------------------------------
    | Default Email verifier
    |--------------------------------------------------------------------------
    |
    | This option controls the default verifier that is used to verify any email
    |
    | Supported: "kickbox", "usercheck", "mails", "block-temporary-email", "zerobounce"
    |            "verifyright", "mailboxvalidator", "emaillistverify"
    */

    'default' => env('INDISPOSABLE_SERVICE', 'kickbox'),

  use Illuminate\Support\Facades\Schedule;
  
  Schedule::command('email-verify:update-disposable-domains')->weekly();

  protected function schedule(Schedule $schedule)
  {
      $schedule->command('email-verify:update-disposable-domains')->monthly();
  }

// Using validation rule name:
'email_field' => '
bash
php artisan email-verify:update-disposable-domains
bash
php artisan vendor:publish --provider="ErlandMuchasaj\LaravelEmailVerify\EmailVerifyServiceProvider"