PHP code example of conkal / columbus

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

    

conkal / columbus example snippets


use Conkal\Columbus\Columbus;

$columbus = new Columbus('username', 'password', 'sender');
$response = $columbus->send('905555555555', 'Hello World');
/**
* Response is an array
 * [
 * 'errorCode' => '0',
 * 'smsId' => '1234567890',
 * ]
 */