Skip to content

Instantly share code, notes, and snippets.

@fallen90
Created March 22, 2019 17:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fallen90/1e4283e8cc0128a2e251bcfdbe55a339 to your computer and use it in GitHub Desktop.
Save fallen90/1e4283e8cc0128a2e251bcfdbe55a339 to your computer and use it in GitHub Desktop.
<?php
include("itexmo.class.php");
$itexmo = new iTexMo("API_CODE");
//SEND SMS
echo $itexmo->sendSMS("Number", "MESSAGE");
//LIST OUTGOING SMS
echo $itexmo->listOutgoingSMS();
//CLEAR OUTGOING SMS
echo $itexmo->clearOutgoingSMS();
//GET API CODE INFO
echo $itexmo->getInfo();
//GET SERVER STATUS
echo $itexmo->getServerStatus();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment