Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 325 Bytes

File metadata and controls

14 lines (12 loc) · 325 Bytes

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();