PHP code example of skip405 / kickbox-wordpress

1. Go to this page and download the library: Download skip405/kickbox-wordpress 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/ */

    

skip405 / kickbox-wordpress example snippets


composer 

// include your composer dependencies
ess\Client( "KICKBOX_API_KEY" );

$verified_email = $client->verify( "[email protected]" );

// include your composer dependencies
ess\Client( "KICKBOX_API_KEY" );

$batch = $client->verify_batch(
    array( "[email protected]", "[email protected]" ),
    array( "filename" => "My batch filename" )
);

// include your composer dependencies
ess\Client( "KICKBOX_API_KEY" );

$batch = $client->verify_batch(
    array( "[email protected]", "[email protected]" ),
    array( "filename" => "My batch filename" )
);

$batch_status = $client->check_batch( $batch['data']['body']['id'] );