PHP code example of maatify / routee

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

    

maatify / routee example snippets


use Maatify\RouteeSms\Routee;

Y__, __SENDER_NAME__); // Routee instance


$result = $routee->CheckBalance();

print_r($result);


$result = $routee->SendSms(__PHONE_NUMBER__, __SMS_MESSAGE__);

print_r($result);

$time_from = date('Y-m-d\TH:i\Z', strtotime('2023-01-01 00:00'));
$time_to = date('Y-m-d\TH:i\Z', strtotime('2024-07-31 23:59:59'));
$result = $routee->Transactions($time_from, $time_to);

print_r($result);

use Maatify\RouteeSms\Routee;

Y__, __SENDER_NAME__, __YOUR_CALLBACK_URL__); // SmsEG instance


$result = $routee->SendSmsWithCallBackOnChange(__PHONE_NUMBER__, __SMS_MESSAGE__);

print_r($result);


$result = $routee->SendSmsWithCallBackOnCompletion(__PHONE_NUMBER__, __SMS_MESSAGE__);

print_r($result);