Guys here is code written in php for sending sms through your way2sms account. (UPDATED 13/06/2012)
This Code works fine for your small application where you want to send message through your website. Only thing you needed is an account on WAY2SMS . First create an account, then insert this code in your website and pass 4 argument to the function and just sit back and relax :), this code will do automatically everything for you..enjoy :)
You can download complete source in ZIP :http://andromeda.nitc.ac.in/~ritesh/SmsApi/SmsApi.zip
Some Points to Remember...
- Some lines are truncated in this webpage so keep track of double quote("") and new lines.
- You have to create a normal text file with the name cookie.txt and place it your local host or any folder and set absolute location of cookie file to $cookie_file_path_location variable. like this $cookie_file_path_location ="/var/www/sms/cookie.txt";find Absolute path using php function realpath("your_cookie_fine_name");
- Cookie file must have full READ and WRITE permission. Give 777 permission in Linux and full read write permission in windows.reference :http://en.wikipedia.org/wiki/Chmod
- Message length must be less than or equal to 140 character.
- By repeating Code for sending SMS in loop, you can send same message for many time without login and logout.
- Do not include '0' or '+91' before mobile number.
- Before using this code make sure you have installed PHP CURL libraries libcurl. It is necessary for executing this script.
For installation of Curl related help follow: http://ritesh-chandora.blogspot.in/2012/04/install-setup-php-curl-in-linux-and.html
//Setting up variables
$userID="9876543210"; //10 digit, way2sms id, from which admin will send SMS
$userPWD="123456"; // password for user id
$recerverNO="9876543210"; // recever's Number, who is going to receive sms
$message="Anything that you want to send but less than140 character"
******************** CODE START HERE ********************
function send_sms($userID,$userPWD,$recerverNO,$message) { if(strlen($message)>140) // check for message length {echo "Error : Message length exceeds 140 characters" ; exit(); } if (!function_exists('curl_init')) // check for curl library installation {echo "Error : Curl library not installed"; exit(); } $message_urlencode=rawurlencode($message); // message converted into URL encoded form $cookie_file_path ="/var/www/oose/cookie.txt"; // Cookie file location in your machine with full read and write permission //START OF Code for getting sessionid $url="http://site5.way2sms.com/content/index.html"; $header_array[0] = "GET /content/index.html HTTP/1.1"; $header_array[1]= "Host: site5.way2sms.com"; $header_array[2]= "User-Agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:10.0.1) Gecko/20100101 Firefox/10.0.1"; $header_array[3]= "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"; $header_array[4]= "Accept-Language: en-us,en;q=0.5"; $header_array[5]= "Accept-Encoding: gzip,deflate"; $header_array[6]= "DNT: 1"; $header_array[7] = "Connection: keep-alive"; $ch = curl_init(); //initialise the curl variable curl_setopt($ch, CURLOPT_URL,$url); //set curl URL for crawling curl_setopt($ch, CURLOPT_HTTPHEADER, $header_array); //set the header for http request to URL curl_setopt($ch, CURLOPT_REFERER, $reffer); //set reffer url means it shows from where the request is originated. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); //it means after crawling data will return curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($ch, CURLOPT_COOKIEFILE, $cookie_file_path); curl_setopt($ch, CURLOPT_COOKIEJAR, $cookie_file_path); // store the return cookie data in cookie file $result = curl_exec ($ch); // Execute the curl function curl_close ($ch); //END OF Code for getting sessionid //START OF Code for automatic login and storing cookies $post_data = "username=".$userID."&password=".$userPWD."&button=Login"; $url = "http://site5.way2sms.com/Login1.action"; $header_array[0]="POST /Login1.action HTTP/1.1"; $header_array[1]="Host: site5.way2sms.com"; $header_array[2]="User-Agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:10.0.1) Gecko/20100101 Firefox/10.0.1"; $header_array[3]="Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"; $header_array[4]="Accept-Language: en-us,en;q=0.5"; $header_array[5]="Accept-Encoding: gzip, deflate"; $header_array[6]="DNT: 1"; $header_array[7]="Connection: keep-alive"; $header_array[8]="Content-Type: application/x-www-form-urlencoded"; $ch = curl_init(); curl_setopt( $ch, CURLOPT_URL, $url ); curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data); curl_setopt($ch, CURLOPT_HTTPHEADER, $header_array); curl_setopt($ch, CURLOPT_COOKIEFILE, $cookie_file_path); curl_setopt($ch, CURLOPT_COOKIEJAR, $cookie_file_path); curl_setopt( $ch, CURLOPT_FOLLOWLOCATION, true ); curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true ); curl_setopt( $ch, CURLOPT_AUTOREFERER, true ); curl_setopt($ch,CURLOPT_REFERER,"http://site5.way2sms.com/content/index.html"); $content = curl_exec( $ch ); $response = curl_getinfo( $ch ); curl_close ($ch); //END OF Code for automatic login and storing cookies // START OF Code is getting way2sms unique user ID $url = "http://site5.way2sms.com/jsp/InstantSMS.jsp"; $ch = curl_init(); curl_setopt( $ch, CURLOPT_URL, $url ); curl_setopt($ch, CURLOPT_COOKIEFILE, $cookie_file_path); curl_setopt($ch, CURLOPT_COOKIEJAR, $cookie_file_path); curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true ); $content = curl_exec($ch); curl_close ($ch); $regex = '/input type="hidden" name="Action" id="Action" value="(.*)"/'; preg_match($regex,$content,$match); $userID = $match[1]; // END OF Code for getting way2sms unique user ID // START OF Code for sending SMS to Recever $post_data = "HiddenAction=instantsms&catnamedis=Birthday&Action=".$userID."&chkall=on&MobNo=".$recerverNO."&textArea=".$message_urlencode; $url = "http://site5.way2sms.com/quicksms.action"; $header_array[0]="POST /quicksms.action HTTP/1.1"; $header_array[1]="Host: site5.way2sms.com"; $header_array[2]="User-Agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:10.0.1) Gecko/20100101 Firefox/10.0.1"; $header_array[3]="Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"; $header_array[4]="Accept-Language: en-us,en;q=0.5"; $header_array[5]="Accept-Encoding: gzip, deflate"; $header_array[6]="DNT: 1"; $header_array[7]="Connection: keep-alive"; $header_array[8]="Content-Type: application/x-www-form-urlencoded"; $ch = curl_init(); curl_setopt( $ch, CURLOPT_URL, $url ); curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data); curl_setopt($ch, CURLOPT_HTTPHEADER, $header_array); curl_setopt($ch, CURLOPT_COOKIEFILE, $cookie_file_path); curl_setopt($ch, CURLOPT_COOKIEJAR, $cookie_file_path); curl_setopt( $ch, CURLOPT_FOLLOWLOCATION, true ); curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true ); curl_setopt( $ch, CURLOPT_AUTOREFERER, true ); curl_setopt($ch,CURLOPT_REFERER,"Referer: http://site5.way2sms.com/jsp/InstantSMS.jsp"); $content = curl_exec( $ch ); $response = curl_getinfo( $ch ); curl_close ($ch); // END OF Code for sending SMS to Recever //START OF Code for automatic logout $url = "http://site5.way2sms.com/jsp/logout.jsp"; $header_array[0]="GET /jsp/logout.jsp HTTP/1.1"; $header_array[1]="Host: site5.way2sms.com"; $header_array[2]="User-Agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:10.0.1) Gecko/20100101 Firefox/10.0.1"; $header_array[3]="Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"; $header_array[4]="Accept-Language: en-us,en;q=0.5"; $header_array[5]="Accept-Encoding: gzip, deflate"; $header_array[6]="DNT: 1"; $header_array[7]="Connection: keep-alive"; $cookie_file_path ="/var/www/oose/cookie.txt"; $ch = curl_init(); curl_setopt( $ch, CURLOPT_URL, $url ); curl_setopt($ch, CURLOPT_HTTPHEADER, $header_array); curl_setopt($ch, CURLOPT_COOKIEFILE, $cookie_file_path); curl_setopt($ch, CURLOPT_COOKIEJAR, $cookie_file_path); curl_setopt( $ch, CURLOPT_FOLLOWLOCATION, true ); curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true ); curl_setopt( $ch, CURLOPT_AUTOREFERER, true ); curl_setopt($ch,CURLOPT_REFERER,"Referer: http://site5.way2sms.com/jsp/InstantSMS.jsp"); $content = curl_exec( $ch ); $response = curl_getinfo( $ch ); curl_close ($ch); //END OF Code for automatic logout }// end function send_sms
******************** CODE END HERE ********************
This comment has been removed by a blog administrator.
ReplyDeletecan anyone help me to send sms using php
DeleteI just wrote a simpler script in php. Try it: https://github.com/suyashbansal/Way2SMS-API
DeleteDear Suresh
DeleteI tried the code, it did not work. I made a page as given below and uploaded to my site
------------------------
html
head
title Untitled Document /title
meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"
head
body
body
html
--------------------------
Kindly how should i make it working?
Thanks
Arun Sule
aasuleg@gmail.com
9823243766
(I have removed all tags as it was acceptable to transmit this msg)
Deletehtml
head
title Untitled Document /title
meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"
head
body
body
html
--------------------------
Kindly how should i make it working?
Thanks
Arun Sule
aasuleg@gmail.com
9823243766
(I have removed all tags as it was acceptable to transmit this msg)
Deletephp
include('way2sms-api.php');
sendWay2SMS ( '9823243766' , 'S3933P' , '7798942694' , 'Hello World');
php
html
head
title Untitled Document /title
meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"
head
body
body
html
--------------------------
Kindly how should i make it working?
Thanks
Arun Sule
aasuleg@gmail.com
9823243766
(I have removed all tags as it was acceptable to transmit this msg)
Sure. I can help.
DeleteWhy don't you raise an issue at the project on github here ->https://github.com/suyashbansal/Way2SMS-API/issues
This way everyone else will also be able to know about the common fixes.
Thanks
Code that u given in above url is not working can u help me plz
DeleteIt's gr8 job man... It's working very nice. Thanks for your efforts.
ReplyDeletePlease send me the working code to selvarajcse59@gmail.com
Deletedude plz send workind code of sms through way2sms. i have work on this.. please
DeleteHello Manoj , Can you please send the code to nadavati.siva776@gmail.com
Deleteplz send me code at kpdevelopers27@gmail.com
Deletepls send me working code. its not working on my godaddy account. i am really in need of it . Kindly send it at harnish.kang2012@gmail.com
Deletehi Manoj, Can u send me the working code to vamsi.krishna0539@gmail.com
DeleteThis comment has been removed by the author.
DeletePlease Forward the code to my G-Mail balinenipraveen@gmail.com
Deletewaiting for your replay.
Hey friend plz send me working code to rajivrai564@gmail.com...i am waiting for your replay
DeletePlease forward the code to me on agarwalshivam700@gmail.com
DeleteThanks in advance
Wating for your reply
Plz manoj send me code on bhavins.csweb@gmail.com i am working on this type of project please.
DeleteHi Manoj, Can u Please send me the code on imonkvishal@gmail.com your help will be appreciated. Waiting for your reply
Deleteplease sir forword the working code on vivekkr.shaw88@gmail.com
DeletePlease send me the working code on shobhitr@iitk.ac.in
Deleteis this legal to use this .... i mean way2sms won't have objection is using there service like this... I have to use this code in my wesite(organisation website).
ReplyDeleteso please tell me that can i use this code legaly...
please do reply
Yes 100% legal code and way2sms have officially announced it in thair copyright policy
Deletethanx a lot....:) i'm getting sms's...is there any idea to remove userid phone number displaying at the beginning of the text messages???
ReplyDeletecan u send me the working code. to ev.srinivas@gmail.com
Deletecan u plz send me the working code.
DeleteMy id is
ganeshrc35@gmail.com
can you send the working code in to darsa1990@gmail.com
Deleteplz send the working copy to prince.ella@gmail.com
DeletePlz send the working code to sandeepg84@gmail.com
Deletecan u please send me the working code to ravikiranbc1989@gmail.com
Deletecan u please send me the working code to selvarajcse59@gmail.com
Deletehai can u please send me working code to my mail id:
Deletejanardhan.559@gmail.com
plz.......
thanks in advance
hi can u please send me working code to my mail id:
Deletekulkarninachiketv@gmail.com
Hii.....can you please mail me the working code
Deletemail id arunyeroor@gmail.com
hello sir can u send me the way2sms php code
Deletevivekkr.shaw88@gmail.com
i am getting an error-"Notice: Undefined variable: reffer"
ReplyDeleteand i am not getting sms all the time i send..plz help :(
I'm getting the same error :(
DeleteHI,Thanks for sharing code.
ReplyDeletebut iam getting errors like
Notice: Undefined variable: reffer in location : curl_setopt($ch, CURLOPT_REFERER, $reffer);
Notice: Undefined offset: 1 in location :
$userID = $match[1];
pls help me to solv this.
i used the same but still i am getting the error "Notice: Undefined offset: 1 in location : $userID = $match[1];" and also the message is not sending pls any one help me
DeleteGreat work !! thank you for sharing code :)
ReplyDeleteif u have full code so please send zip file at archanapawar@gmail.com
Deleteif u have full code so please send zip file at archanapawar@gmail.com
Deletegreate Work..But On the live Server i did not get any msg is it Cause eroor on live server in my local host it working ?
ReplyDeletecan u please send me the working code to ravikiranbc1989@gmail.com
Deletethis api works fine, THANKS A LOT..
ReplyDeletecan any one tel me the detail process of configuring this php.bcaz i've tried many times ,but my msgs are not delivered
ReplyDeleteI got error at this line
ReplyDeletecurl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
but your code really worked...Thanx mate
hi,
ReplyDeleteIts not working for me,
neither in localhost nor in live server,
Any suggestion from you will be helpful,
Thanks
Parse error: syntax error, unexpected T_FUNCTION in C:\wamp\www\makemyjainshaadi.com\sendsms.php on line 10
Deletethis the error in local
Hi,
ReplyDeleteCan any of you give me your proper code (whose application is working).
thanks
Hi, I modified the code to send messages to multiple contacts.
ReplyDeleteIt works fine for up to 10 contacts but beyond that I get the error "Fatal error: Maximum execution time of 30 seconds exceeded". Can you make suggestions on how I can rectify this, if possible. Thanks!
Hi Aldon,
DeleteCan you please help me I need this type of script which will send multiple contacts,I have tried but it's not working.
I am working for the noble cause i.e NGO website (http://humanrightsngo.com/).
Thanks
Pawan
Hi Aldon,
DeleteCan you please help me, I need this type of script which will send a SMS to atleast one contact,I have tried but it's not working...
I will use ur script in Engineering Final year project.
Please......
Thanks and Regards
Ramesh Sowpati
'Curl library not installed', this error is coming how can it be solved, pls anyone can reply.
ReplyDeleteThanks in advance
Can we run it on Localhost connected with internet
ReplyDeletecoz i m trying & nt working
plz help
I am not getting error after integrating the code,but i am not able send sms .in my cookiesfile.txt it logs this error.
ReplyDeletesite5.way2sms.com FALSE / FALSE 0 JSESSIONID A01~373E22D0B226307EA18D4FC3010D3B42.w801.
Please help me to resolve this issues.
Thnaks,
Rabindra
I am also getting same prb if solved means plz let me know!!!!!!!!
Deletehey.. i am getting error "Undefined offset: 1.." at line number 75 :p
ReplyDeleteanyone please tell me why i am seeing it??
grt code
ReplyDeletecan u please send me the working code to selvarajcse59@gmail.com
Deletecan you please send the working code at ashish1995joshi@gmail.com
DeleteNotice: Undefined offset: 1 in /opt/lampp/htdocs/send_sms.php
ReplyDeleteI didnt get sms and also any error msg can tell wat is the prb.......?
ReplyDeleteuse $reffer="http://site5.way2sms.com/jsp/InstantSMS.jsp";
ReplyDeleteand i used the version downloaded in zip file so "Notice: Undefined offset: 1 in location : $userID = $match[1];" this error didn't came.....
Can u pls put up the lines that contain variable $match in the zip file version?? give line numbers also.
Deletehiii...I've used that $reffer...but still I'm getting offset error...Did u solve this??
DeleteNotice: Undefined offset: 1 in location :
ReplyDelete$userID = $match[1];
finding error ..
can any one tell me how to do variable $match in the zip file version
U solved the error? If so, can u pls tell me wat did u do?
DeleteNotice: Undefined offset: 1 in location :
Delete$userID = $match[1];
me to having the same error how to solve plz guide me!!
The zip file doesn't exist. can anyone re-upload or give the correct link for this file?
ReplyDeleteLooks like the site is changed, so it wont work anymore!
ReplyDeleteNotice: Undefined offset: 1 in location :
ReplyDelete$userID = $match[1];
finding error ..
can any one tell me how to do variable $match in the zip file version
http://site5.way2sms.com/jsp/InstantSMS.js Give a 404 page now ?
ReplyDeleteUndefined offset: 1 in location :
ReplyDelete$userID = $match[1];
finding error ..
can any one tell me how to do variable $match in the zip file version
there is no error but sms never to receive
ReplyDeleteUndefined offset: 1 in location :
ReplyDelete$userID = $match[1];
finding error ..
any one tell me how to do variable $match in the zip file version
I tried a lot i was uable to sort out. Please do send me a altered code to my mail id panpinky2@gmail.com.
ReplyDeletePlease help me regarding this its urgent...
Solution will be appreciated..
Undefined offset: 1 in C:\wamp\www\smser\sms.php on line 88
ReplyDeleteUndefined variable: reffer in C:\wamp\www\smser\sms.php on line 37
please provide the correct code..
dhrubojyoti_das@yahoo.in
plz upload correct code
ReplyDeletepleas tell me how to save all the code in single page or separate for each code section mentioned here
ReplyDeleteI am not Able to Download your "SmsApi/SmsApi.zip" file... it shows 'Page not found' error. Please give a live link to this file. I want to download this file.
ReplyDeleteIs new working code available ?
ReplyDeletepreg_match($regex,$content,$match);
ReplyDelete$userID = $match[1];//Here Showing this error
Undefined offset: 1
i am getting a http_code=404 in this
ReplyDeleteurl:'http://site5.way2sms.com/jsp/InstantSMS.jsp'
This is the response text
*url -> http://site5.way2sms.com/jsp/InstantSMS.jsp
content_type ->
http_code -> 404
header_size -> 137
request_size -> 136
filetime -> -1
ssl_verify_result -> 0
redirect_count -> 0
total_time -> 0.506365
namelookup_time -> 2.4E-5
connect_time -> 0.252878
pretransfer_time -> 0.252933
size_upload -> 0
size_download -> 0
speed_download -> 0
speed_upload -> 0
download_content_length -> -1
upload_content_length -> 0
starttransfer_time -> 0.50634
redirect_time -> 0
certinfo -> Array
redirect_url ->
its showing following error
ReplyDeleteCould not connect to MySQL: php_network_getaddresses: getaddrinfo failed: No such host is known.
though i have taken care of every steps
This comment has been removed by the author.
ReplyDeletehttp://andromeda.nitc.ac.in/~ritesh/SmsApi/SmsApi.zip This link not working,how can i download the zip file
ReplyDeletecan u please send me the working code to ravi.c269759@gmail.com
ReplyDeletethanks in advance
HI ,
ReplyDeleteI want send sms to group of number from sdcard, those are on whatsapp.
if this feasible or not from my android phone, plz let me know how ..
Some coding hint want.
Any one having some clue plz share
CAn any one send working code plz.....
ReplyDeletesms to multiple user at same time using php...any have code please send me ..
ReplyDeleteThanks
plz send me working code. This code not working in my system. It didn't any error messages. plz send me working code to email kalyan.tmk@gmail.com
ReplyDeletewill you please send me working code on my id that will be very help full
ReplyDeletesonawane.kuldeep@gmail.com this is my email id
thanks by that way.
pls send working code to my email id meanbudhasan@gmail.com
ReplyDeletepls send working code to my email id iqbal2mlsolution@gmail.com
ReplyDeleteplease send me working code to my id nilesh.parmar141@gmail.com
ReplyDeletepristineseo.com/php-code-sending-free-sms-way2sms-account/
ReplyDeletehttp://pristineseo.com/php-code-sending-free-sms-way2sms-account/
ReplyDeletecan you send me the zip file of code through my email id.
ReplyDeletegyaneswar.pritam@gmail.com
this code not working from localhost so please help me
ReplyDeletefollowing error generated
Notice: Undefined variable: reffer in C:\wamp\www\SMS-API\example2.php on line 34
Call Stack
# Time Memory Function Location
1 0.0164 421192 {main}( ) ..\example2.php:0
2 0.0164 421680 send_sms( ) ..\example2.php:6
( ! ) Notice: Undefined offset: 1 in C:\wamp\www\SMS-API\example2.php on line 85
Call Stack
# Time Memory Function Location
1 0.0164 421192 {main}( ) ..\example2.php:0
2 0.0164 421680 send_sms( ) ..\example2.php:6
on line 7 a semicolon is missing ; and curl commands full of error and func not invoked
ReplyDeleteSend Free SMS just click here
ReplyDeleteundefine variable reffer at line 30
ReplyDeleteundefine offset 1 at line 81
Can u mail the code to pranavkpr1@gmail.com
DeleteCan u mail the code to pranavkpr1@gmail.com
ReplyDeleteCURLOPT_FOLLOWLOCATION cannot be activated when safe_mode is enabled or an open_basedir is set
ReplyDeleteon line 36 and 105
THIS IS THE ERROR I AM GETTING
Please send me the working code
ReplyDeletedhaneeshk1983@gmail.com
will u please send me the working code............pls...........urgent
ReplyDeletePlease send me the working code ktldbphpdeveloper@gmail.com
ReplyDeletePls send me working code on my mail id nscutenidhi4@gmail.com
ReplyDeletePls send me working code on my mail id s.sureshkumar2@gmail.com
ReplyDeletePlssss Send Me the working code at htmcoding@gmail.com
ReplyDeletebro plz mail me smsapi.zip file to my mail my email id is : daudihuzefa2@gmail.com.
ReplyDeleteb'coz when i try to download "http://andromeda.nitc.ac.in/~ritesh/SmsApi/SmsApi.zip" this file apache error occurred so plz e mail me...
thank you.
Plssss Send Me the working code at daudihuzefa2@gmail.com
ReplyDeletePlssss Send Me the working code at daudihuzefa2@gmail.com
ReplyDeleteWorking fine but adding my number and spaces at the beginning of the message.
ReplyDeleteHello Sager, wen did you try this code. can we send more then 50 mesages using it. I want to use it for OTP purpose. Can you please mail me working code here : sunil.sonyrawat.rawat@gmail.com
DeleteThanks Bro Advance..
Sagar pls send ur code to ngelekanyo@gmail.com
ReplyDeletePlease send me the working code to khanmamun772@gmail.com
ReplyDeleteThis comment has been removed by the author.
ReplyDeleteplease send me working code to
ReplyDeletedarshanjains07@gmail.com
i am getting this error :
Notice: Undefined offset: 1 in C:\xampp\htdocs\gluehost\way2sms2.php on line 82
I have getting error like
ReplyDeleteNotice: Undefined variable: reffer
Notice: Undefined offset: 1 for $userID = $match[1];
can anybody pls. help me solve my error or send me working on code my email prakashnipun@gmail.com
Thanks.
This comment has been removed by the author.
ReplyDeletePlease send me working code to
ReplyDeletearulprasadj@outlook.com
please send me the working code @
ReplyDeletekaustubh.agrawal2000@gmail.com
BRO I HAVE SENT YOU THE MAIL... :)
Deletehttps://drive.google.com/file/d/0B9DBPH5xymtxN1MwN0d6NHNnaWs/view?usp=sharing
CHANGE YOUR MOBILE NUMBER AND PASSWORD IN INDEX.HTML
Hello Pandian,
DeleteWould you please send me working code on my mail id
shashank.webdeveloper@gmail.com
Thanks in advance :)
https://drive.google.com/file/d/0B9DBPH5xymtxN1MwN0d6NHNnaWs/view?usp=sharing
Deleteis it working fine sir ??
DeleteError getting domain - can u help me
DeleteI need scheduled sms via way2sms.. is it possible???? anyone can help me.. I am doing free sms.. for my clients..
ReplyDeleteHello Pandian,
DeleteWould you please send me working code on my mail id
shashank.webdeveloper@gmail.com
Thanks in advance :)
your post is so nice
ReplyDeletehello guys someone send me proper code for send sms through way2sms
ReplyDeletemahindrakarsrinivas@gmail.com
please send me sms code in php for way2 sms api
ReplyDeleteplease send me working sms code in php email: manish19sharma@gmail.com
ReplyDeletethanks in advance
please send me working sms code in php email: itganesh2014@gmail.com
ReplyDeleteThanks in advance..
Working code
DeletePHP Code for Sending free SMS through your way2sms. Download from the link.
https://drive.google.com/file/d/0B9DBPH5xymtxN1MwN0d6NHNnaWs/view?usp=sharing
Thanks for you given a working code link its very nice.
Deletethis also give error : Error Logging InHTTP/1.1 302 Found Server: Apache-Coyote/1.1 Set-Cookie: JSESSIONID=A03~8FCE5FADC0678CCE1FB2FE9C1C1BB259.w803; Path=/; HttpOnly Location: http://site21.way2sms.com/vem.action;jsessionid=8FCE5FADC0678CCE1FB2FE9C1C1BB259.w803?id=8FCE5FADC0678CCE1FB2FE9C1C1BB259.w803 Content-Length: 0 Date: Sat, 06 Feb 2016 22:07:31 GMT Connection: close HTTP/1.1 200 OK Server: Apache-Coyote/1.1 Content-Type: text/html;charset=ISO-8859-1 Transfer-Encoding: chunked Content-Encoding: gzip Vary: Accept-Encoding Date: Sat, 06 Feb 2016 22:07:31 GMT Connection: close
Deletesend free sms
ReplyDeleteplease send me working code at haresh268@gmail.com
ReplyDeletei need urgent I have task related to this api
Hello I am Karthik , and how 2 send SMS using PHP for give a proper working code and procedure for send my mail id: atturkarthik14@gmail.com
ReplyDeleteits not working dude
ReplyDeleteThis comment has been removed by the author.
ReplyDeletePlease visit following link http://ravikumar509.blogspot.in/ This person has developed code for sending sms in php via waytosms and it is properly working by now
ReplyDeletemta architect
ReplyDeleteCan we remove “Sent via WAY2SMS.COM” from SMS . If we can please let me know and i appreciate your work, Thank you………
ReplyDeletehey sir
ReplyDeletethis link is not working its showing port 80 something 404 error
It's nice job man. It's working very nice. Thanks for your efforts.
ReplyDeleteWorking fine for me Thank you (muruganactive90@gmail.com)
DeleteThis comment has been removed by the author.
ReplyDeleteI read your post that was amazing. thanks for sharing this article.
ReplyDeleteBulk SMS Services Provider
Its great blog..!online sms service
ReplyDeletegreat blog to read... explanation are very clear in this blog so easy to understand
ReplyDeletephp training | php training in chennai | best php training | best php training in chennai
Interesting Blog..! See more @ http://bit.ly/2oVutDY
ReplyDeleteGreat post! Keep sharing. Bulk SMS Gateway In India
ReplyDeleteExcellent blog and useful information. Bulk SMS API Services
ReplyDeletenice blogs
ReplyDelete<a href="http://www.sanjaybulksms.coSms Gateway Api</a>
ReplyDeleteI wondered upon your blog and wanted to say that I have really enjoyed reading your blog posts. Any way I’ll be subscribing to your feed and I hope you post again soon.
iOS App Development Company
iOS App Development Company
Pretty article! I found some useful information in your blog, it was awesome to read, thanks for sharing this great content to my vision, keep sharing..
ReplyDeleteDigital Mobile Marketing
SMS API
SMS Marketing
web dogs is best bulk sms service provider company in mumbai. They provide all types of service like seo, smo, ppc, online marketing and many more.
ReplyDeleteBulk Sms Service Provider Company In Mumbai | Bulk Sms Service
Thanks for sharing this post. Your post is very informative. I have read all your posts and all are very informative. promotional sms service provider in india
ReplyDeleteThis comment has been removed by the author.
ReplyDeleteMaxwell Communication is one of the leading bulk SMS service, Transactional & Promotional SMS Service providers in Chennai, India. We guide you to reach your targets easily@ MaxwellCommunication. SMS Service providers in Chennai
ReplyDeleteBulk SMS is utilized as promotional SMS for SMS marketing. Our bulk SMS marketing solution helps you to send cheap bulk promotional SMS service provider in India. It's least expensive marketing solution to reach achieve imminent clients. MAXWELL Communication furnishes bulk SMS service with NDNC filter, so you don't have any lawful issues with NDNC Registry.Send Sms Online India.
ReplyDeleteThis post is really very informative, keep it up.....
ReplyDeleteWebsite Designing Company
Web Development Company
This is an awesome post.Really very informative and creative contents. These concept is a good way to enhance the knowledge.I like it and help me to development very well.Thank you for this brief explanation and very nice information.Well, got a good knowledge.
ReplyDeleteMEAN stack training in Chennai
MEAN stack training in bangalore
MEAN stack training in tambaram
MEAN stack training in annanagar
This is an awesome post.Really very informative and creative contents. These concept is a good way to enhance the knowledge.I like it and help me to development very well.Thank you for this brief explanation and very nice information.Well, got a good knowledge.
ReplyDeleteMEAN stack training in Chennai
MEAN stack training in bangalore
MEAN stack training in tambaram
MEAN stack training in annanagar
ReplyDeletelaw college
law college in Jaipur
Best law college in Jaipur
Law Course In Jaipur
Top College Of law In Jaipur
Vidyasthali Law College
Best Law College
Jaipur Law College
Your good knowledge and kindness in playing with all the pieces were very useful. I don’t know what I would have done if I had not encountered such a step like this.
ReplyDeletepython training in omr
python training in annanagar | python training in chennai
python training in marathahalli | python training in btm layout
python training in rajaji nagar | python training in jayanagar
All the points you described so beautiful. Every time i read your i blog and i am so surprised that how you can write so well.
ReplyDeletejava training in omr
java training in annanagar | java training in chennai
java training in marathahalli | java training in btm layout
java training in rajaji nagar | java training in jayanagar
Nice post. By reading your blog, i get inspired and this provides some useful information. Thank you for posting this exclusive post for our vision.
ReplyDeleterpa training in Chennai
rpa training in velachery
rpa training in tambaram
rpa training in sholinganallur
rpa training in Chennai
rpa training in pune
rpa online training
rpa training in bangalore
This blog is the general information for the feature. You got a good work for these blog.We have a developing our creative content of this mind.Thank you for this blog. This for very interesting and useful.
ReplyDeleteData Science Training in Chennai
Data science training in bangalore
Data science online training
Data science training in pune
Data science training in kalyan nagar
selenium training in chennai
Wow it is really wonderful and awesome thus it is very much useful for me to understand many concepts and helped me a lot. it is really explainable very well and i got more information from your blog.
ReplyDeleterpa training in Chennai | rpa training in velachery
rpa training in tambaram | rpa training in sholinganallur
rpa training in Chennai | rpa training in pune
rpa online training | rpa training in bangalore
The knowledge of technology you have been sharing thorough this post is very much helpful to develop new idea. here by i also want to share this.
ReplyDeleteDevops Training in pune|Devops training in tambaram|Devops training in velachery|Devops training in annanagar
DevOps online Training
Your good knowledge and kindness in playing with all the pieces were very useful. I don’t know what I would have done if I had not encountered such a step like this.
ReplyDeleterpa training in Chennai | rpa training in pune
rpa training in tambaram | rpa training in sholinganallur
rpa training in Chennai | rpa training in velachery
rpa online training | rpa training in bangalore
This is such a great post, and was thinking much the same myself. Another great update.
ReplyDeletepython training in chennai
python training in chennai
python training in Bangalore
Really very nice blog information for this one and more technical skills are improve,i like that kind of post.
ReplyDeletejava training in chennai | java training in USA
selenium training in chennai
Really very nice blog information for this one and more technical skills are improve,i like that kind of post.
ReplyDeletejava training in chennai | java training in USA
selenium training in chennai
It is amazing and wonderful to visit your site.Thanks for sharing this information,this is useful to me...
ReplyDeletepython online training
python training in OMR
python training in tambaram
Nice tutorial. Thanks for sharing the valuable information. it’s really helpful. Who want to learn this blog most helpful. Keep sharing on updated tutorials…
ReplyDeletepython online training
python training in OMR
python training in tambaram
I believe there are many more pleasurable opportunities ahead for individuals that looked at your site.
ReplyDeleteData Science training in Chennai
Data science training in bangalore
Data science training in pune
Data science online training
organic oil
ReplyDeleteorganic oil in jaipur
organic cold pressed oils
ayurvedic oil store in jaipur
ayurvedic oil
Its really great information Thank you sir And keep it up More Post
Hmm, it seems like your site ate my first comment (it was extremely long) so I guess I’ll just sum it up what I had written and say, I’m thoroughly enjoying your blog. I as well as an aspiring blog writer, but I’m still new to the whole thing. Do you have any recommendations for newbie blog writers? I’d appreciate it.
ReplyDeleteBest Selenium Training in Chennai | Selenium Training Institute in Chennai | Besant Technologies
Selenium Training in Bangalore | Best Selenium Training in Bangalore
AWS Training in Bangalore | Amazon Web Services Training in Bangalore
Thanks for sharing this unique information with us. Your post is really awesome. Your blog is really helpful for me..
ReplyDeleteI have read your blog its very attractive and impressive. Nice information. It helped me alot.
Organiic Oil is very useful for skin and hair. It improve complexion and skin tone.
natural oil
pure herbal oil
ayurvedic oil store in jaipur
ayurvedic oil
Luke Mckey Mckey
ReplyDeleteFrom: mckeyluke@gmail.com 30/11/2018 10:41 PM
Mobile: 8016862141
Company: Brandnetizen
Address: kol
Hello, How are you? Hope you are fine. I have been checking your website quite often. It has seen that the main keywords are still not in top 10 rank. You know things of working; I mean the procedure of working has changed a lot. So I would like to have opportunity to work for you and this time we will bring the keywords to the top 10 spot with guaranteed period. There is no wondering that it is possible now cause, I have found out that there are few things need to be done for better performances (Some we Discuss, in this email). Let me tell you some of them - 1. Title Tag Optimization 2. Meta Tag Optimization (Description, keyword and etc) 3. Heading Tags Optimization 4. Targeted keywords are not placed into tags 5. Alt / Image tags Optimization 6. Google Publisher is missing 7. Custom 404 Page is missing 8. The Products are not following Structured markup data 9. Word-Press is not installed properly, in the blogs 10. Website Speed Development (Both Mobile and Desktop) Please check via Google Developer - https://developers.google.com/speed/pagespeed/ 11. Favicon needs to be changed too. 12. Off –Page SEO work Lots are pending…………….. You can see these are the things that need to be done properly to make the keywords others to get into the top 10 spot in Google Search & your sales Increase. Also there is one more thing to mention that you did thousands of links that time for your website, which are considered as spam after Google roll outs several updates of Panda and penguin. We need to remove them too. Sir/Madam, please give us a chance to fix these errors and we will give you rank on these keywords. Please let me know if you encounter any problems or if there is anything you need. If this email has reached you by mistake or if you do not wish to take advantage of this advertising opportunity, please accept my apology for any inconvenience caused and rest assured that you will not be contacted again. Many thanks for your time and consideration, Looking forward Regards Luke Mckey If you did not wish to receive this, please reply with "unsubscribe" in the subject line. Disclaimer: This is an advertisement and a promotional mail strictly on the guidelines of CAN-SPAM Act of 2003. We have clearly mentioned the source mail-id of this mail and the subject lines and they are in no way misleading in any form. We have found your mail address through our own efforts on the web search and not through any illegal way. If you find this mail unsolicited, please reply with "unsubscribe" in the subject line and we will take care that you do not receive any further promotional mail.
Thanks for sharing this unique information with us. Your post is really awesome. Your blog is really helpful for me..
ReplyDeletehospital equipment
sarthak maditech
hospital equipment suppliers
hospital equipment manufacturers
medical equipment manufacturers in jaipur
operation theater lights
hospital suction machine
alcohol breath tester
hospital furniture manufacturer
After reading your post I understood that last week was with full of surprises and happiness for you. Congratz! Even though the website is work related, you can update small events in your life and share your happiness with us too.
ReplyDeleteangularjs online training
apache spark online training
informatica mdm online training
devops online training
aws online training
From your discussion I have understood that which will be better for me and which is easy to use. Really, I have liked your brilliant discussion. I will comThis is great helping material for every one visitor. You have done a great responsible person. i want to say thanks owner of this blog.
ReplyDeleteMicrosoft Azure online training
Selenium online training
Java online training
uipath online training
Python online training
ReplyDeleteYour very own commitment to getting the message throughout came to be rather powerful and have consistently enabled employees just like me to arrive at their desired goals.
Web Designing Training in Chennai | No.1 Web Designing Course Training in Chennai
SQL Server Training in Chennai | Best No.1 SQL Server Course Training in Chennai
Digital Marketing Training in Chennai | Best Digital Marketing Course Training in Chennai
Our Ready php code/ script will help you to save time and efforts at a large level. Your enterprise/organization's php application can be easily integrated with our services. However, we provide ready to use bulk SMS API PHP code that helpfuls to send various information to your user's mobile.
ReplyDeleteIt’s great to come across a blog every once in a while that isn’t the same out of date rehashed material. Fantastic read.
ReplyDeleteDevops Course Training in Chennai |Best Devops Training Institute in Chennai
Selenium Course Training in Chennai |Best Selenium Training Institute in Chennai
Java Course Training in Chennai | Best Java Training Institute in Chennai
您分享的信息,太好了,有趣。我很幸運能閱讀這篇文章
ReplyDeletePhối chó bull pháp
Phối giống chó Corgi
Phối chó Pug
Dịch vụ phối giống chó Poodle
Dịch vụ phối giống chó bull pháp
Our Ready php code/ script will help you to save time and efforts at a large level. Your enterprise/organization's php application can be easily integrated with our services. However, we provide ready to use bulk SMS API PHP code that helpfuls to send various information to your user's mobile.
ReplyDeleteVery Nice article ! great job. Thanks for sharing.
ReplyDeletePromote your business brands with bulk SMS marketing, contact us at +917404900081
bulk SMS provider
send bulk SMS
bulk SMS service
I am very much pleased with the contents you have mentioned. I wanted to thank you for this great article. Vergil DMC 5 Coat
ReplyDeleteHi , Thank you so much for writing such an informational blog. If you are Searching for latest Jackets, Coats and Vests, for more info click on given link-Beth Dutton Coat
ReplyDelete