ConsultingJoe Posted September 7, 2007 Posted September 7, 2007 As you can already tell, I like anything sms. Well here's another script. its a simple sms api udf. Hope you like it. #include <HTTP.au3> #include <IE.au3> ;CODE SAMPLES: https://www.vazu.com/api/codesamples.php ;GET YOUR OWN KEY FOR FREE: https://www.vazu.com/api/autopartner.php $key = "" $to = "321-555-1212" $from = "312-555-1212" $msg = "Hey there you sexy scripter" $return = sms( $key, $to, $msg, $from ) ConsoleWrite( $return ) ;Return of 1 is a successfully sent message Func sms($key, $to, $msg, $from="") $msg = _HTTPEncodeString($msg) $ie = _IECreate("www.vazu.com/api/http/InstantSendMessage?licensekey="&$key&"&dest-number="&$to&"&from-number="&$from&"&message="&$msg, 0, 0) $response = _IEBodyReadText( $ie ) _IEQuit( $ie ) $response = StringSplit( $response, " " ) If IsArray($response) Then $result = StringSplit( $response[1], "=" ) If IsArray($result) Then Return $result[2] Else Return 0 EndIf Else Return 0 EndIf EndFunc Check out ConsultingJoe.com
Oldschool Posted October 26, 2007 Posted October 26, 2007 Can you make on ethat works on http://www.sendsmsnow.com/ please.
ConsultingJoe Posted October 28, 2007 Author Posted October 28, 2007 Can you make on ethat works on http://www.sendsmsnow.com/ please.I could... Check out ConsultingJoe.com
WhOOt Posted October 28, 2007 Posted October 28, 2007 I could...Would you? That would be just absolutely great!
ConsultingJoe Posted October 29, 2007 Author Posted October 29, 2007 Would you? That would be just absolutely great!I would because I could use it but I can't right now. No time Check out ConsultingJoe.com
Ibrahim Posted October 29, 2007 Posted October 29, 2007 Egypt Included????? [font="Arial Black"]My Stuff[/font]UPnP Port Forwarding Final.GateWay InformationThe GateWay Watcher(detect speeofing)Rightclick Any file --->Hide/UnhideThe Tip WatcherA PanelShare WatcherThe Arp WatcherThe Online License Checker
ConsultingJoe Posted October 29, 2007 Author Posted October 29, 2007 Egypt Included?????sorry, its not in the options.And I'm not doing this because you have to be a member. Check out ConsultingJoe.com
Ibrahim Posted October 30, 2007 Posted October 30, 2007 u mean" you have to be a member" or "me Have to be a member" and a member of what???????? [font="Arial Black"]My Stuff[/font]UPnP Port Forwarding Final.GateWay InformationThe GateWay Watcher(detect speeofing)Rightclick Any file --->Hide/UnhideThe Tip WatcherA PanelShare WatcherThe Arp WatcherThe Online License Checker
ConsultingJoe Posted October 30, 2007 Author Posted October 30, 2007 u mean" you have to be a member" or "me Have to be a member" and a member of what????????The sender just has to be a member of the site, sendsmsnow.com Check out ConsultingJoe.com
ConsultingJoe Posted October 30, 2007 Author Posted October 30, 2007 is it possible to recieve sms?no Check out ConsultingJoe.com
walle Posted October 30, 2007 Posted October 30, 2007 (edited) working worldwide? anyway, would like to see a script with utorrent Edited October 30, 2007 by walle
ConsultingJoe Posted October 30, 2007 Author Posted October 30, 2007 working worldwide?anyway, would like to see a script with utorrent http://www.autoitscript.com/forum/index.php?showtopic=36429 Check out ConsultingJoe.com
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now