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

Installs: 33

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/gaardee/php-cpsms

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

This package is auto-updated.

Last update: 2025-12-29 02:52:30 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();