Jump to content

Another SMS UDF


ConsultingJoe
 Share

Recommended Posts

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

[center]AutoIT + Finger Print Reader/Scanner = COOL STUFF -> Check Out Topic![/center][center][font=Arial Black]Check out ConsultingJoe.com[/font][/center][center]My Scripts~~~~~~~~~~~~~~Web Protocol Managing - Simple WiFi Scanner - AutoTunes - Remote PC Control V2 - Audio SpectrascopePie Chart UDF - At&t's TTS - Custom Progress Bar - Windows Media Player Embed[/center]

Link to comment
Share on other sites

  • 1 month later...

Can you make on ethat works on http://www.sendsmsnow.com/ please.

I could...

[center]AutoIT + Finger Print Reader/Scanner = COOL STUFF -> Check Out Topic![/center][center][font=Arial Black]Check out ConsultingJoe.com[/font][/center][center]My Scripts~~~~~~~~~~~~~~Web Protocol Managing - Simple WiFi Scanner - AutoTunes - Remote PC Control V2 - Audio SpectrascopePie Chart UDF - At&t's TTS - Custom Progress Bar - Windows Media Player Embed[/center]

Link to comment
Share on other sites

Would you? <_<

That would be just absolutely great!

I would because I could use it but I can't right now. No time

[center]AutoIT + Finger Print Reader/Scanner = COOL STUFF -> Check Out Topic![/center][center][font=Arial Black]Check out ConsultingJoe.com[/font][/center][center]My Scripts~~~~~~~~~~~~~~Web Protocol Managing - Simple WiFi Scanner - AutoTunes - Remote PC Control V2 - Audio SpectrascopePie Chart UDF - At&t's TTS - Custom Progress Bar - Windows Media Player Embed[/center]

Link to comment
Share on other sites

Egypt Included?????

sorry, its not in the options.

And I'm not doing this because you have to be a member.

[center]AutoIT + Finger Print Reader/Scanner = COOL STUFF -> Check Out Topic![/center][center][font=Arial Black]Check out ConsultingJoe.com[/font][/center][center]My Scripts~~~~~~~~~~~~~~Web Protocol Managing - Simple WiFi Scanner - AutoTunes - Remote PC Control V2 - Audio SpectrascopePie Chart UDF - At&t's TTS - Custom Progress Bar - Windows Media Player Embed[/center]

Link to comment
Share on other sites

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

[center]AutoIT + Finger Print Reader/Scanner = COOL STUFF -> Check Out Topic![/center][center][font=Arial Black]Check out ConsultingJoe.com[/font][/center][center]My Scripts~~~~~~~~~~~~~~Web Protocol Managing - Simple WiFi Scanner - AutoTunes - Remote PC Control V2 - Audio SpectrascopePie Chart UDF - At&t's TTS - Custom Progress Bar - Windows Media Player Embed[/center]

Link to comment
Share on other sites

is it possible to recieve sms?

no

[center]AutoIT + Finger Print Reader/Scanner = COOL STUFF -> Check Out Topic![/center][center][font=Arial Black]Check out ConsultingJoe.com[/font][/center][center]My Scripts~~~~~~~~~~~~~~Web Protocol Managing - Simple WiFi Scanner - AutoTunes - Remote PC Control V2 - Audio SpectrascopePie Chart UDF - At&t's TTS - Custom Progress Bar - Windows Media Player Embed[/center]

Link to comment
Share on other sites

working worldwide?

anyway, would like to see a script with utorrent <_<

http://www.autoitscript.com/forum/index.php?showtopic=36429

[center]AutoIT + Finger Print Reader/Scanner = COOL STUFF -> Check Out Topic![/center][center][font=Arial Black]Check out ConsultingJoe.com[/font][/center][center]My Scripts~~~~~~~~~~~~~~Web Protocol Managing - Simple WiFi Scanner - AutoTunes - Remote PC Control V2 - Audio SpectrascopePie Chart UDF - At&t's TTS - Custom Progress Bar - Windows Media Player Embed[/center]

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...