This topic is locked
[SOLVED]

 Send Sms With Phprunner

1/11/2013 9:55:09 AM
PHPRunner General questions
S
sandrotab author

Hi everyone,

in one of my phprunner projects I made a very simple method to send text messages(sms) through a third party gateway.

The button also views the number of available sms depending on credit.
An example of the implementation is:

on a list, you select the records you want and then press "send sms" button. It will open a new window where you'll be able to write the text. In my last development I also added the possibility to select the text from a fixed template previously set on another table.
If you are interested, please contact me ...
see the video <img src='https://asprunner.com/forums/file.php?topicimage=1&fieldname=question&id=20521&image=1&table=forumtopics' class='bbc_emoticon' alt=':)' /> :

http://erpweb.it/demo/demosms

J
joiresende 1/12/2013

I am interested

joiresende@hotmail.com

D
desipan 1/12/2013

I am interested in getting the SMS related code. Please contact me by email paruju1@gmail.com

If you don't mind, please share your code here in this forum.

Thanks...

R
rlee6087 1/14/2013

Check out the following link, it gives the phone number & carrier translation to txt. I've tested it and it works just like regular email straight to SMS phones. You simply use the number and the carriers sms extension. for example verizon would be [10-digit phone number]@vtext.com
http://www.makeuseof.com/tag/email-to-sms/

U
Ugain 1/15/2013

OpenAutoClassifieds.com --- <img src='https://asprunner.com/forums/file.php?topicimage=1&fieldname=reply&id=69356&image=1&table=forumreplies' class='bbc_emoticon' alt=':P' /> free php script has such function in their code.

U
Ugain 1/15/2013



Hi everyone,

in one of my phprunner projects I made a very simple method to send text messages(sms) through a third party gateway.

The button also views the number of available sms depending on credit.
An example of the implementation is:

on a list, you select the records you want and then press "send sms" button. It will open a new window where you'll be able to write the text. In my last development I also added the possibility to select the text from a fixed template previously set on another table.
If you are interested, please contact me ...
see the video <img src='https://asprunner.com/forums/file.php?topicimage=1&fieldname=reply&id=69357&image=1&table=forumreplies' class='bbc_emoticon' alt=':)' /> :

http://erpweb.it/demo/demosms


I am also interested in your implementation. You can PM me here.

F
Flyarbox 1/15/2013

FYI: just a clarification for everyone...
This posting is not an altruistic offer to share knowledge. Rather it is a for-profit advertisement. The original poster is asking $100 US for access to his example, payment to be immediate through PayPal.
Quoting the response I received:

To send you the project, I must kindly ask you a 100$ US dollars donation (paypal) to let me continue investing time in small projects.


Perhaps this was intuitively obvious to everyone else; it was a surprise for me. I would've expected such information to be a part of the original post.

W
wildwally 1/16/2013

The great thing about PHP is the open source code that everyone shares. With a simple search you can find how easy it is to implement something like this in your site.
Here is one I found that provides all the carrier addresses and instructions.

http://davidwalsh.name/send-text-message
E
epanc 1/28/2013



Hi everyone,

in one of my phprunner projects I made a very simple method to send text messages(sms) through a third party gateway.

The button also views the number of available sms depending on credit.
An example of the implementation is:

on a list, you select the records you want and then press "send sms" button. It will open a new window where you'll be able to write the text. In my last development I also added the possibility to select the text from a fixed template previously set on another table.
If you are interested, please contact me ...
see the video <img src='https://asprunner.com/forums/file.php?topicimage=1&fieldname=reply&id=69553&image=1&table=forumreplies' class='bbc_emoticon' alt=':)' /> :

http://erpweb.it/demo/demosms


Hi, I am interested

C
chrisath 1/28/2013



Hi everyone,

in one of my phprunner projects I made a very simple method to send text messages(sms) through a third party gateway.

The button also views the number of available sms depending on credit.
An example of the implementation is:

on a list, you select the records you want and then press "send sms" button. It will open a new window where you'll be able to write the text. In my last development I also added the possibility to select the text from a fixed template previously set on another table.
If you are interested, please contact me ...
see the video <img src='https://asprunner.com/forums/file.php?topicimage=1&fieldname=reply&id=69555&image=1&table=forumreplies' class='bbc_emoticon' alt=':)' /> :

http://erpweb.it/demo/demosms



I am also interested in your implementation. You can PM me here.

A
aalekizoglou 1/29/2013

I would like to share some knowledge with the forum.
First of all I must say we've build and run www.SMS2GREECE.com solely with PHPRunner therefore you understand we have the inner knowledge for the SMS gateway. SMS2GREECE can send bulk SMS to nearly 800 mobile networks in 200 countries. The front web site is build with Joomla. Even thought it is in Greek, you can try the system by pressing register -> 'ΕΓΓΡΑΦΗ'
PHPRunner was used to build the www.SMS2GREECE.com/portal GUI interface, where the user manages contacts/groups, posts messages, builds WebLink campaigns, etc.

Behind SMS2GREECE there is a PHP script that acts as a daemon to dispatch messages to carriers and check statuses. There is also a script to implement the HTTP API.

If you want to send message to the gateway via a third party site, there is an API we've build to communicate with the service. So for example, based on the API, if you want to post a message to the gateway here is the code :



<?php

$username = "user";

$password = md5("password");

$to = "306974444444";

$from = "301234567890";

$message= urlencode("your message");

if ($username && $password && $to && $message) {

$data = "?username=$username&password=$password&

to=$to&message=$message&from=$from";

$data = urlencode($data);

$file = fopen('http://www.sms2greece.com/portal/send.php'.$data,'r';);

$result = fread($file,1024);

fclose($file);

echo $result;

}
?>


I can give further information to anyone who wants, but keep in mind I only know how to connect third party web pages to our service.
Regards,