mandsberg/suresms-php

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

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

This package is not auto-updated.

Last update: 2025-06-15 09:10:22 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);