gaardee/php-cpsms

There is no license information available for the latest version (dev-master) of this package.

Send sms with smsprovider cpsms.dk API version 2

dev-master 2020-01-29 17:19 UTC

This package is auto-updated.

Last update: 2024-04-29 04:20:15 UTC


README

This package can be used to send packages via cpsms API v2. https://api.cpsms.dk/documentation/index.html

Read more about cpsms here: http://www.cpsms.dk

Send sms

$sms = new sms('apiKey');
$sms->recipient = '12345678';
$sms->sender = 'Sender';
$sms->message = 'Test message';
$sms->send();

Check credits

$sms = new SMS('apiKey');
$sms->credits();