mandsberg/suresms-php

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

Installs: 1

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

pkg:composer/mandsberg/suresms-php

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

This package is not auto-updated.

Last update: 2025-12-14 11:29:14 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);