mandsberg/suresms-php

Send SMS using international SureSMS http://www.suresms.com

Maintainers

Package info

github.com/Mandsberg/SureSMS-PHP

pkg:composer/mandsberg/suresms-php

Statistics

Installs: 1

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

dev-master 2019-06-21 05:06 UTC

This package is not auto-updated.

Last update: 2026-03-22 12:49:05 UTC


README

Use this PHP code to send SMS using the SureSMS SMS Gateway.

SureSMS

You need to have a paid account with SMS Gateway in order to send SMS messages with this code. Account is free, but you pay for each SMS.

Example

$recipient = '12345678';
$sender = 'SureSMS';
$SureSMS = new SureSMS('myUsername', 'myPassword'); 
$SureSMS->send("Helo world!", $recipient, $sender);