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

Maintainers

Package info

github.com/gaardee/php-cpsms

pkg:composer/gaardee/php-cpsms

Statistics

Installs: 74

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

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

This package is auto-updated.

Last update: 2026-03-01 00:30:26 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();