30.11.2012
POSTED IN: Apifon News | Extranet |

A new edition (Quick SMS V2). There is the possibility of instant messaging or simply by typing numbers or by pasting the numbers that I have chosen from another program.

Important: select the separator character between numbers eg enter, tab, space, etc.
 

22.11.2012
POSTED IN: Apifon News | SMS Api |

Apifon in collaboration with easyTech has created an sms plug in, used by  Virtuemart 2 (joomla v2.5 and above) in order to automate the confirmation of a purchase via SMS and not only e-mail.

SMS is a new intelligent way to confirm and notify the order that has taken place, providing direct information and reliability for your applications! 

All you have to do to take advantage of the plugin easyVMsms is, to install the extension, create an account at www.apifon.com and topup credits.

You will find the plugin as also the instructions configuring the easyVMsms plugin at: easytech.gr

20.09.2012
POSTED IN: Apifon News |
The future of sms marketing is bright!

All statistics are for the United States:

  • 95 - 98% of text messages are read within minutes of receipt.
  • 86% of consumers send or receive a text message every week.
  • 30% of consumers interact with a brand via text message.
  • 2.12 Trillion text messages are sent every year! (Summer 2011)
  • Only 40% of constumers own smartphones (Fall 2011).
  • 64% of 25 -35 years olds own a smartphone
  • Text messaging is still the largest mobile marketing channel by revenue (2011).

08.02.2012
POSTED IN: Beginners Topics | Extranet |
Now you can create and save your message templates into extranet. This way, you can easily import a standard every time you need it.

Special fields are personal information that you can save in a contact and later use in bulk actions, in order to submit a personalized campaign:  "Dear customer we want to inform you that your bonus points are 
 1250 "

These actions are in the section Web to SMS > Settings submenu.
 

Add or edit special fields, like the date, name or surname. Notice that you have to fill the maximum field's length in order to let us count your text characters before an sms submit.

 

To use the special fields follow the syntax: {name_of_special_fieldincluding the parentheses and the asterisk.

name_of_special_fieldthe title is provided during the creation of a specific field in which the characters can be either upper or lower case.

 
19.12.2011
POSTED IN: Apifon News | Extranet |
Apifon got the approval of Greece’s regulatory telecommunication authority EETT to provide reliable network activities and telecommunication services.EETT’s approval permits Apifon to begin the establishment of a new point of presence in Greece, increasing the total number of presence points worldwide and aiming to ensure a whole new level of high quality and speed  in international sms/mms messaging services between mobile operators worldwide.
28.11.2011
POSTED IN: Apifon News | SMS Api | Extranet |
Our new sms API is ready to serve more that 15.000 sms/min. Our team has developed a well organized system that could handle high load traffic requests, simple over the http protocol, without waiting the time of the overload. 

All you need is to create an account at extranet.apifon.com
Read more in our Documentation,  www.apifon.com/HttpApi_Doc_Apifon.pdf

02.11.2011
POSTED IN: SMS Api | Extranet |

Now Apifon gives you the opportunity to get informed about your balance account, simply by following up the steps bellow.

1. Login to http://extranet.apifon.com
2. From the main menu My Account choose Notifications and then Balance for the submenu

3. Then select  Add Notification and fill the fields in order to add notification 

4. A pop up window will appear to fill the fields:


Balance Limit : declare the limit of the amount you wish to get notifications
Send every : declare the frequency that you will receive the notifications
Client : choose the client you want to send the notifications. For the web2sms users declare their own account
Send method : choose the type of the notification ( email or sms)
Method info : write the mobile phone or email where the notification will be send.

21.09.2011

What’s a callback URL?

A "callback URL" is the web address an API needs to send information for use in a different web site.
For example, a web developer is building a web application, and wants to send notification SMS messages. In order to send through our gateway, he needs to use our SMS API. Then he has to 'ask' over and over our gateway to get the delivery report, until he gets back a final status.

In addition this tracking method, using the callback method, all the required information that the developer needs (e.g. the status of the SMS) can automatically been sent back to the URL he has requested so.

This is an example of a script that a developer may need, to store the information sent back (by the callback method), to a MySQL database.


?php
 	
    $dbhost = 'localhost';		//Host Domain/IP 
    $dbuser = 'root';			//Username
    $dbpass = 'password';		//password
    $dbname = 'callback';		//Database name
    $tblname = 'delivery_reports';	//Table to insert or update delivery reports

    $conn = @mysql_connect($dbhost, $dbuser, $dbpass);
    @mysql_select_db($dbname);

    if($conn === false){
        die('Unable to connect');
    } 
    
    @mysql_query('UPDATE ' . $tblname . '  
                   SET StatusId="'.$_REQUEST['statusId'].'",
			Description="'.$_REQUEST['description'].'", 
			Parameters="'.$_REQUEST['parameters'].'",
			DateTime='.date('Y-m-d H:i:s').'
		   WHERE RecipientId ="'.$_REQUEST['recipientId'].'"
		   AND Recipient="'.$_REQUEST['recipient'].'" ', $conn);
    
    if(@mysql_affected_rows($conn)<1) {
        @mysql_query('INSERT INTO ' . $tblname . ' 
			VALUES( "'.$_REQUEST['recipientId'].'",
				"'.$_REQUEST['messageId'].'",
				"'.$_REQUEST['recipient'].'",
				"'.$_REQUEST['statusId'].'",
				"'.$_REQUEST['description'].'", 
				"'.$_REQUEST['parameters'].'", 
				'.date('Y-m-d H:i:s').' )', $conn );
    }
    
    @mysql_close($conn);
    
?>
		

To set up your "Callback URL" you 'll have to log in at extranet.apifon.com and find the field "Callback URL" from the menu My Account in the Preferences tab.

12.09.2011
POSTED IN: Apifon News | Extranet |

We are announcing an additional feature to our extranet:

You can access traffic statistics per delivery status (delivered, undelivered, pending), or total amount sent shorted by day, week, month, year...
In your Apifon's extranet dashboard find gadget tool "Quick Analytics"

From there, you can see Sent Traffic for the period you would like and download the report! 

Use the Quick period option, to track the total SMS sent for a custom Period.


30.08.2011

If you are not a developer and want to test Apifon, then this guide is for you. 
Follow these steps to send your first SMS.

    1. Sign Up to Apifon and retrieve your API Key.
    2. Copy and paste this URL into your browser where as:

apikey = your API key
from = your sender id e.g. myCompany
to = the destination number at international format (i.e. for UK: 44 1234567890)
text = your message

In order to send a message you have to call the following syntax:
http://smsc.apifon.com/send/?apikey=MY_API_KEY&from=Apifon&to=441234567890&text=Hello!

Enjoy,
Apifon Team

26.08.2011
POSTED IN: Beginners Topics | Extranet |

1. Open a browser and navigate to the URL extranet.apifon.com
2. Select Sign up here.

3. Complete the sign up typing all fields. Remember to type a valid mobile number in order to receive a PIN. (will be used at next step). 
4. You will receive a sms with your Pin, and also an email, with further instructions on how to activate your account, using your the PIN
5. After a successful signup you will be navigated automatic to the activation page. If the navigations fails then follow the link you will find at the email you already received.
6. In the activation page you will be asked to enter your PIN number.

7. Your account will be activated successfully.
8. For users that selected SMS API account an email with the API KEY will be sent. This is required in order to use our SMS Api gateway.
9. Now you can log in with your email and your password.

For more information contact with us at support@apifon.com

 

24.08.2011
POSTED IN: Apifon News |

Search our knowledge base, get answers from the community and share your feature suggestions with us through Apifon Help Desk.
You can also submit a request or send us an email at support@apifon.com

22.08.2011
POSTED IN: Apifon News |

We are announcing today our new blogpost. Now you have the oportunity to learn our news, updates, notifications, technical issues about our inovations and services.

Stay tuned,

Apifon Team