This PHP class will allow you to send SMS's via Exetel's online SMS utility. It supports messages up to 160 characters. It does not support retrieving SMS's
$reciever = '0400000000'; $sender = 'Server Status'; // Note, this does not have to be a number $sms = new exetelsms($reciever, $sender, 'someuser', 'somepassword'); $message = 'This is a test message. Messages have to be under 160 characters'; $sms->sendSMS($message);
Download the class from here: exetelsms-0.1.tar.gz