kasperhartwich/php-smssender

This is my take on a sms sender interface, that in time should support a lot of different sms gateways.

Installs: 44 729

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 1

Forks: 0

Open Issues: 2

pkg:composer/kasperhartwich/php-smssender

dev-master 2016-02-01 13:02 UTC

This package is auto-updated.

Last update: 2025-09-29 01:17:16 UTC


README

This is my take on a sms sender interface, that in time should support a lot of different sms gateways.

These are at the moment supported:

  • CPSMS
  • SMSgateway.dk
  • SureSMS.com
  • Inmobile.dk

Example

require 'lib/CPSMS.php';

$sms = new CPSMS('username', 'password');
$sms->recipient = '87654321';
$sms->sender = 'php-smssender';
$sms->message = 'Here comes the sun.';
$sms->send();