kasperhartwich/php-smssender

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

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

This package is auto-updated.

Last update: 2024-05-29 03:26:32 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();