tomaskavalek / gosms

gosms – Sending SMS via gosms.cz API

Home Page:https://github.com/tomaskavalek/gosms

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

gosms – Sending SMS via gosms.cz API

Example

$sms = new \SMS\GoSMS("CLIENT", "SECRET");
$sms->authenticate();
$sms->setChannel(1);
$sms->setMessage('Test');
$sms->setRecipient('+420xxxyyyzzz');
$sms->setExpectedSendTime(new \DateTime('+1 hour', new \DateTimeZone('Europe/Prague')));
$sms->send();

About

gosms – Sending SMS via gosms.cz API

https://github.com/tomaskavalek/gosms

License:MIT License


Languages

Language:PHP 100.0%