Monday, February 21, 2011

how to send receive sms using php code

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"
titleActiveXperts 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




Send an SMS message to a recipient through an SMPP connection.




hr size="1" color="#707070"



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();
?>
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

2 comments:

  1. We also provide a detailed document of Bulk SMS API PHP to send bulk SMS in a minute of a time. You can use our code of php for SMS notifications, signup messages, alert, reminder, and OTP. Choose a reliable Java API for your own existing system! It allows you to do many functionalities under the single platform.

    ReplyDelete
  2. Hi, Nice informational Code for Php through SMPP. It can rightly be said that SMPP Server is one of the best SMS APIs for dealing with high volumes, avoiding SMS gateway supplier lock-ins and for complete reliability.

    ReplyDelete