Mobile Services
We serve corporate and financial entities worldwide
When you think about the ways you would wish to approach the modern mobile markets, the sheer amount of possibilities can be overwhelming.
Hundreds of providers, thousands of similar products and services, and no easy way to navigate the sea of information.
The services you have access to when partnering with us broadly fall into the following categories.
Bulk SMS
Fast, effective and personal communication
High performance solutions for messaging on a massive scale with versatile functionalities
SMS messaging is the most efficient and personal way to communicate today. Consider the following: It takes six seconds to deliver an average message, which is then read within the next five minutes by more than 90% of recipients. There are nearly 4.5 billion mobile devices globally. Using this channel to reach potential and existing customers seems immediately obvious.
Bulk SMS is solicited messaging to a group of mobile users. It's most commonly used as a reliable alerting channel and for marketing purposes. It is available in many ways, it can be integrated into your existing platform, or you can just use one of the ready-made solutions. This is called a Bulk SMS Gateway.
Why use Our Bulk SMS Gateway?
If you want to advertise a product, send weather forecast or party invitations there really is no better way to do it but Bulk SMS. With Infobip, you get a fully featured set of applications that are proven to work with, free 24/7 technical support and the ability to implement HTTP API integration to any applications.
2-way Messaging
Receive SMS directly into application
A2P and P2A messaging, used for SMS voting or information gathering
As the name says, two-way SMS means basically sending and receiving messages in your computer's inbox, which truly is the way to go for mobile marketers and promotions. Mobile users will sooner trust a business that has a conversational approach, where user's interaction and choice matter. When combined with personalised content, two-way SMS will really feel intimate, unobtrusive – personal.
Potential uses for two-way SMS
-
SMS voting
Reality shows, academic projects...
-
Marketing surveys
Product preference, customer satisfaction...
-
Promotions
User opt-in / opt-out, location information...
How can our 2-Way SMS solution help you?
Our platform is completely integrated – this means that you can send and receive SMS, collate and analyse the results, run a dynamic campaign; from one place. The best part is, the whole process is completely intuitive, so that you can jump in and use the service within minutes. You also get free 24/7 technical support, HTTP API integration for developers, with the optional features such as Virtual SIM hosting for a minimal fee.
Virtual SIM hosting allows you to receive inbound SMS to your application on a dedicated number without need for a physical SIM.
You are not restricted by your service users' geographic location and they can reach you from every corner of the globe.
Here's how it works:
- You register one or more dedicated numbers on our platform.
- The numbers are bound to your account and placed into a virtual hosting setup – we call it 'virtual SIM', because there's no physical SIM card used.
- All of the messages received by this number are processed and forwarded to you directly.
- You are able to use all the features such as Keywords or Auto-Replies.
- The up-time is directly tied to SMSC, so there's no chance of 'SIM malfunction.'
APIs
Application Programming Interface
Our APIs allow developers to gain easy access to a range of Infobip mobile services
HTTP API
Our HTTP API is ideal for web-based services, providing straightforward integration with popular programming languages. The API supports HTTP GET or XML POST.
PHP Integration Example
The CLASS
<?php
class SendSMSclass
{
//input parameters ---------------------
var $username; //your username
var $password; //your password
var $sender; //sender text
var $message; //message text
var $flash; //Is flash message (1 or 0)
var $inputgsmnumbers; //destination gsm numbers
var $type; //msg type ("bookmark" - for wap push, "longSMS" for text messages only)
var $bookmark; //wap url (example: www.google.com)
//--------------------------------------
var $host;
var $path;
var $XMLgsmnumbers;
var $xmldata;
var $request_data;
var $response;
function SendSMS($username, $password, $sender, $message, $flash, $inputgsmnumbers, $type, $bookmark)
{
$this->username = $username;
$this->password = $password;
$this->sender = htmlspecialchars($sender, ENT_QUOTES);
$this->message = htmlspecialchars($message, ENT_QUOTES);
$this->flash = $flash;
$this->inputgsmnumbers = explode(',',$inputgsmnumbers);
$this->type = $type;
$this->bookmark = $bookmark;
$this->host = "api.365smspanel.com";
$this->path = "/api/sendsms/xml";
$this->convertGSMnumberstoXML();
$this->prepareXMLdata();
$this->response = $this->doPost($this->path,$this->request_data,$this->host);
return $this->response;
}
function convertGSMnumberstoXML()
{
foreach($this->inputgsmnumbers as $gsmnumber)
{
$this->XMLgsmnumbers .= "<gsm>" . $gsmnumber . "</gsm>";
}
}
function prepareXMLdata()
{
$this->xmldata = "<SMS><authentification><username>" . $this->username . "</username><password>" . $this->password . "</password></authentification><message><sender>" . $this->sender . "</sender><text>" . $this->message . "</text><flash>" . $this->flash . "</flash><type>" . $this->type . "</type><bookmark>" . $this->bookmark . "</bookmark></message><recipients>" . $this->XMLgsmnumbers . "</recipients></SMS>";
$this->request_data = 'XML=' . $this->xmldata;
}
function doPost($uri,$postdata,$host){
$da = fsockopen($host, 80, $errno, $errstr);
if (!$da)
{
return "$errstr ($errno)";
}
else {
$salida ="POST $uri HTTP/1.1\r\n";
$salida.="Host: $host\r\n";
$salida.="User-Agent: PHP Script\r\n";
$salida.="Content-Type: text/xml\r\n";
$salida.="Content-Length: ".strlen($postdata)."\r\n";
$salida.="Connection: close\r\n\r\n";
$salida.=$postdata;
fwrite($da, $salida);
while (!feof($da))
$response.=fgets($da, 128);
$response=split("\r\n\r\n",$response);
$header=$response[0];
$responsecontent=$response[1];
if(!(strpos($header,"Transfer-Encoding: chunked")===false)){
$aux=split("\r\n",$responsecontent);
for($i=0;$i<count($aux);$i++)
if($i==0 || ($i%2==0))
$aux[$i]="";
$responsecontent=implode("",$aux);
}//if
return chop($responsecontent);
}//else
}
}
?>
The FORM
<form id="form1" name="form1" method="post" action="<?php $_SERVER['PHP_SELF'] ?>">
<table width="500" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="25" align="left" valign="middle">Username:</td>
<td align="left" valign="middle"><input name="username" type="text" id="username" /></td>
</tr>
<tr>
<td height="25" align="left" valign="middle">Password:</td>
<td align="left" valign="middle"><input name="password" type="text" id="password" /></td>
</tr>
<tr>
<td width="114" height="25" align="left" valign="middle">GSM number: </td>
<td width="386" align="left" valign="middle"><input name="gsm" type="text" id="gsm" /></td>
</tr>
<tr>
<td height="25" align="left" valign="middle">Sender:</td>
<td align="left" valign="middle"><input name="sender" type="text" id="sender" /></td>
</tr>
<tr>
<td height="25" align="left" valign="middle">Message type: </td>
<td align="left" valign="middle"><input name="messagetype" type="radio" value="longSMS" checked="checked" />
Text message<br />
<input name="messagetype" type="radio" value="bookmark" />
Wap push </td>
</tr>
<tr>
<td height="25" align="left" valign="middle">WAP URL: </td>
<td align="left" valign="middle"><input name="bookmark" type="text" id="bookmark" /></td>
</tr>
<tr>
<td height="25" align="left" valign="middle">Is Flash: </td>
<td align="left" valign="middle"><input name="isflash" type="checkbox" id="isflash" value="1" /></td>
</tr>
<tr>
<td align="left" valign="top">Message Text: </td>
<td align="left" valign="top"><textarea name="messagetext" id="messagetext"></textarea></td>
</tr>
<tr>
<td height="30" align="left" valign="middle"><input name="submit" type="submit" id="submit" value="Send" /></td>
<td align="left" valign="middle"> </td>
</tr>
</table>
</form>
<?php
if (isset($_POST['submit']) and $_POST['submit'] == "Send")
{
require_once('sendSMSclass.php');
$gsm = $_POST['gsm']; //MSISDN's seperated by comma
$username = $_POST['username']; //your username
$password = $_POST['password']; //your password
$sender = $_POST['sender'];
$isflash = $_POST['isflash']; //Is flash message (1 or 0)
$type = $_POST['messagetype']; //msg type ("bookmark" - for wap push, "longSMS" for text messages only)
$bookmark = $_POST['bookmark']; //wap url (example: www.google.com)
$messagetext = $_POST['messagetext'];
// Note: replace sign "+" with "%2b" for sender and message text or it will be replaced with empty space
$sender = str_replace("+","%2b",$sender);
$messagetext = str_replace("+","%2b",$messagetext);
$SENDSMS = new SendSMSclass();
$response = $SENDSMS->SendSMS($username,$password,$sender,$messagetext,$isflash, $gsm, $type, $bookmark); //IsFlash must be 0 or 1
echo $response;
}
?>
|
 |
|
GET A FREE TEST ACCONUT!
Fill in the form and get a FREE test accont!
NO Obligations!
|
 |
PRICING
Package 1:
- 365 SMS Panel
- 2,000 Credits per month
- Priority Support
- Backup
- Messageprices from € 0.02
Setup fee: € 29.00
Monthly fee: € 49.00
ORDER NOW>>
Package 2:
- 365 SMS Panel
- 10,000 Credits per month
- Priority Support
- Backup
- Messageprices from € 0.02
Setup fee: € 29.00
Monthly fee: € 149.00
ORDER NOW>>
SMS Prices>>
|
 |
365 SMS Panel
Powerful cross-platform messaging
Our entry-level messaging application, 365 SMS Panel is designed for reliable bulk SMS and single message sending at all Internet connection speeds.
The lightweight interface of 365 SMS Panel is designed to be accessible from any speed of Internet connection and browser, allowing your business to communicate via SMS wherever you are in the world.
365 SMS Panel also provides message traffic reports in Excel or CSV format.
Benefits
365 SMS Panel can give your business a fast, low cost way to communicate directly and efficiently with customers, colleagues and partners using SMS.
Whether you're looking to interact via SMS with a mobile sales team, send thousands of messages simultaneously to a marketing database, or simply send a quick text to a colleague or customer, 365 SMS Panel allows you to do this and more from anywhere in the World. All you need is a basic web browser and a simple Internet connection – even dialup will work!
As well as encouraging greater interaction, mobile messaging can also help reduce waste and has lower a carbon footprint compared to paper-based communication methods.
Features
Quick SMS 
Quick SMS allows you to easily send a message to up to 50 recipients. Simply type or paste one or more recipient numbers, select a sender (either alphanumeric or a pre-configured numeric sender) enter your message, and press 'Send'.
Blast SMS 
Designed to handle high volume SMS campaigns such as sales promotions or political campaigns, Blast SMS allows you to send targeted bulk SMS to thousands of recipients in just a few seconds. Recipient numbers can be uploaded easily and quickly in CSV or Excel format.
Reports 
365 SMS Panel's Reports page displays a message traffic overview for the previous 48 hours, with separate sections for messages sent from Quick SMS and Blast SMS. Reports can be downloaded in CSV or Excel format for easy import into other applications.
Options 
The Options page lets you manage your account, including registration of numeric senders and changing your password. |
 |
|