Aug 24, 2005 #1 dex888 Programmer Aug 13, 2005 7 MY Hi, Can PB develope a system with SMS function? Thank you very much?
Sep 2, 2005 #2 blktoptrvl Programmer Jul 12, 2003 18 US Yes, you just need to attach to the proper API libraries. I do not know what they are, but they should be somewhat similar to MAPI and TAPI. Upvote 0 Downvote
Yes, you just need to attach to the proper API libraries. I do not know what they are, but they should be somewhat similar to MAPI and TAPI.
Oct 25, 2005 #3 NiravParmar Programmer Oct 25, 2005 1 GB You can send SMS through, HTTPPOST. See below Code xmlhttp = create oleobject result = xmlhttp.ConnectToNewObject("MSXML2.ServerXMLHTTP") xmlhttp.Open("POST", "http://www.24x.com/sendsms/sendsms.aspx", False) xmlhttp.setRequestHeader("Content-Type", "application/x-http://www-form-urlencoded")xmlhttp.send("user=" + strUserName + "&password=" + strPassword + "&smsto=" + strSmsTo + "&smsfrom=" + strSMSFrom + "&smsmsg=" + strSmsMsg) sResponse = xmlhttp.responseText Upvote 0 Downvote
You can send SMS through, HTTPPOST. See below Code xmlhttp = create oleobject result = xmlhttp.ConnectToNewObject("MSXML2.ServerXMLHTTP") xmlhttp.Open("POST", "http://www.24x.com/sendsms/sendsms.aspx", False) xmlhttp.setRequestHeader("Content-Type", "application/x-http://www-form-urlencoded")xmlhttp.send("user=" + strUserName + "&password=" + strPassword + "&smsto=" + strSmsTo + "&smsfrom=" + strSMSFrom + "&smsmsg=" + strSmsMsg) sResponse = xmlhttp.responseText
Oct 25, 2005 #4 A0C61ZZ IS-IT--Management Oct 29, 2003 43 IN Is there a way of sending pages from PB 10?? - A0C61ZZ Upvote 0 Downvote