Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 311 Bytes

File metadata and controls

14 lines (11 loc) · 311 Bytes

TelstraSMS-PHP

A PHP wrapper for the Telstra SMS API.

##Usage::

<?php
    $sms = new TelstraSMS($appKey, $appSecret, $recipient, $message); // Construct new SMS object
    $sms->send(); // Send the SMS

    $sms->getStatus(); // Gets the status of the message (json response)
    ?>