PHP code example of adjemin / mtnsmscloud
1. Go to this page and download the library: Download adjemin/mtnsmscloud 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/ */
adjemin / mtnsmscloud example snippets
use MtnSmsCloud\MTNSMSApi;
/**
* Create a new Instance
*
* @param string $sender_id = The desired sender_id
* @param string $token = $token associated with $sender_id
*/
$msa = new MTNSMSApi($sender_id, $token);
/**
* Send a new Campaign
*
* @param array $recipients {Ex: ["225xxxxxxxx", "225xxxxxxxx"]}
* @param string $message
*/
return $msa->newCampaign($recipients, $message);
/**
* Retrieves on created Campaign
*
* @param string $campaign_id
* @param string $message
*/
return $msa->getCampaign($campaign_id, $message);