ActiveXperts
SMS & MMS Toolkit


 Product Overview

 Supported Protocols:
 
 How to use

 Online Samples

 Download (.exe)

 Brochure (.pdf)

 Manual (.htm)

 Release Notes


Support

 Knowledge Base

 Forum

 Contact Support


Purchase

 Licensing

 Pricing

 Order now


Providers

 SMPP Providers

 MMS Providers

 TAP/UCP Providers

 SNPP Providers


Related documents

 Case studies

 SMS Documents

 GSM Network Codes

 TAPI Documents

 About Mobile
 Communications


 AT Commands

 RFC's


  Download ActiveXperts SMS and MMS Toolkit 5.0  (6826 KB - .exe file)
  Download Manual  (623 KB - .htm file)


Using the SMS and MMS Toolkit with PHP


The SMS and MMS Toolkit is a software development kit (SDK) to enhance an application or script with SMS, MMS and Pager functionality.
An SMS messages can be sent using a GSM/GPRS modem, an SMPP provider, an HTTP compliant SMS provider or using a standard dialup or fixed-line SMS modem.
An MMS messages can be sent via a GSM/GPRS modem (MM1), an SMTP server (MM4) or an XML/SOAP compliant provider (MM7).

SMS features:
  • Send and receive numeric- and alphanumeric text SMS messages
  • Verify delivery of outgoing SMS messages
  • Support for multimedia SMS messages, including ringtones, pictures and logo's
  • Support for WAP Push, WAP Bookmarks, vCards, voicemail/e-mail/fax/MMS indications
  • Support for Unicode, to support foreign languages like Chinese, Turkisch, etc.
  • Support for multi-part messages, to allow messages longer than 160 characters
  • Support for GSM modems, GSM phones, SMS/HTTP providers, SMPP (Short Message Peer to Peer) providers, TAP/XIO and UCP dial-in SMSC providers
  • Support Multi-threading environments. The component is thread-safe, which means it can be used in a multi-threaded environment
  • Samples included for various development platforms: MS Visual Basic, MS Visual Basic .NET, MS Visual C++, MS Visual Studio C# .NET, ASP, ASP .NET, Borland Delphi, Borland C++ Builder, ColdFusion and more
MMS features:
  • Support for many multimedia formats incl.: JPG, GIF, PNG, BMP, WBMP, TIF, WAV, MP3, MIDI, AC3, GP3, AVI, MPG, MP4, VCARD, VCALENDAR, JAR and more
  • Support for MM1 (MMS over WAP), MM4 (MMS over SMTP) and MM7 (MMS over HTML/SOAP)
Pager features:
  • Send alpha-numeric Pager messages through SNPP

This document describes how the SMS and MMS Toolkit can be integrated into PHP projects.


Step 1: Installation of the SMS and MMS Toolkit

On each client PC, download the SMS and MMS Toolkit from the ActiveXperts Download Site and start the installation. The installation guides you through the installation process.



Step 2: Create the SMS objects in PHP

You must use the following code to declare the COM object(s) in PHP:
Insert the following line to declare and create the Smpp object:
   $objSmppProtocol = new COM ( "ActiveXperts.SmsProtocolSmpp" );
 

Insert the following line to declare and create the SmsConstants object:
   $objSmsMessage = new COM ( "ActiveXperts.SmsMessage" );

Insert the following line to declare and create the SmsConstants object:
   $objSmsConstants = new COM ( "ActiveXperts.SmsConstants" );


Step 3: Send and/or receive SMS messages

You can now send and/or receive SMS messages.

The following PHP code shows how to send a SMS message through a SMPP provider:
<html>
   <head>
   <META HTTP-EQUIV="CONTENT-Type" CONTENT="text/html;CHARSET=utf-8" >
   <title>ActiveXperts SMS and MMS Toolkit PHP Sample</title>
   </head>
   <body>
   <font face="sans-serif" size="2">
   <hr size="1" color="#707070">
   <font size="4">ActiveXperts SMS and MMS Toolkit PHP Sample</font>
   <br>
   <br>
   <b>Send an SMS message to a recipient through an SMPP connection.</b>
   <br>
   <br>
   <hr size="1" color="#707070">
   <br>

   <?php
   
   $objSmppProtocol = new COM ( "ActiveXperts.SmsProtocolSmpp" );
   
   $objSmppProtocol->Server           = "smpp.activexperts-labs.com";
   $objSmppProtocol->ServerPort       =  2775;
   $objSmppProtocol->SystemID         = "ax004";
   $objSmppProtocol->SystemPassword   = "812056";
   $objSmppProtocol->SystemType       = "SMPP";

   $objSmppProtocol->Logfile          = "c:\\PhpSmppLog.txt";
   $objSmppProtocol->ServerTimeout    = 5000;
   $objSmppProtocol->SystemMode       = 1;

   $objSmsMessage->Recipient          = "+31647134225";
   $objSmsMessage->Data               = "Hello World, SMS Message From PHP";
   $objSmsMessage->Format             = 0;


   $objSmppProtocol->Connect();

   if ( $objSmppProtocol->LastError == 0 )
   {      
        $objSmppProtocol->Send( objSmsMessage );
   }
	
   if ( $objSmppProtocol->LastError == 0 )
   {
       Echo "Message successfully submitted.";
   }
   else
   {
       $ErrorNum = $objSmppProtocol->LastError;
       $ErrorDes = $objSmppProtocol->GetErrorDescription ( $ErrorNum );

       Echo "Error sending message: #$ErrorNum ($ErrorDes).";
   }

   $objSmppProtocol->Disconnect();
?>

   <br>
   <br>
   <hr size="1" color="#707070">
   <font size="1" face="Verdana">This demo uses the ActiveXperts SMS and MMS Toolkit, an <a href="http://www.activexperts.com">ActiveXperts Software</a> product.</font>
   </body>
</html>
There are many working samples included with the product. You can also find them on the ActiveXperts FTP site: ftp.activexperts-labs.com/samples/xmstoolkit.





The ActiveXperts SMS and MMS Toolkit is a SMS development component (SDK). This control can be used by any Windows development platform, including Visual Basic .NET, Visual CSharp .NET, ASP .NET (VB,CS), ASP, Visual Basic, Visual Basic for Applications (VBA), Visual Studio/Visual C++, Borland Delphi and C++ Builder, PHP, ColdFusion, HTML, VBScript and any other ActiveX/COM compliant platform. The SMS and MMS Toolkit is an ActiveXperts Software B.V. Product.

Copyright ©1999-2007 ActiveXperts Software. All rights reserved.