An API client for sending SMSs via the Panacea Mobile API
composer require superbalist/php-panaceamobile
Want to get started quickly? Check out some of these integrations:
$username = 'your_username';
$password = 'your_password';
$guzzleClient = new \GuzzleHttp\Client();
$client = new \Superbalist\PanaceaMobile\PanaceaMobileAPI($guzzleClient, $username, $password);
$response = $client->sendMessage('+27000000000', 'This is a test message.');
var_dump($response);