whr := ComObjCreate("WinHttp.WinHttpRequest.5.1")
whr.Open("GET", "https://se-1.cellsynt.net/sms.php?username=demo&password=test123&destination=0046700123123&originatortype=numeric&originator=46700456456&charset=UTF-8&text=Test+123", true)
whr.Send()
; Using 'true' above and the call below allows the script to remain responsive.
whr.WaitForResponse()
MsgBox % whr.ResponseText
whr := ComObjCreate("WinHttp.WinHttpRequest.5.1")
whr.Open("POST", "https://se-1.cellsynt.net/sms.php", true)
whr.SetRequestHeader("Content-Type", "application/x-www-form-urlencoded")
whr.Send("username=demo&password=test123&destination=0046700123123&originatortype=numeric&originator=46700456456&charset=UTF-8&text=Test+123")
whr.WaitForResponse()
MsgBox % whr.ResponseText