An infobip API wrapper.
Via Composer
$ composer require accessafya/infobip
// Initial with authentication
$infobip = new AccessAfya\Infobip(
$username,
$password,
$senderId,
$baseUrl
);
Sending SMS
$response = $infobip->sms->send(
"text_message",
"phone_number"
"scheduled_time" // Optional
);
Sending Email
// Coming soon
$response = $infobip->email->send();
$ composer test
If you discover any security related issues, please email author instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.