如何在WordPress中集成Contact7形式的SMS API

时间:2020-04-13 作者:Alok Jha

我接受了来自http://bulksmsindia.mobi/bulksmsindia/index.html. 我想在我的WordPress网站中集成短信作为确认表单提交。我从下面的服务提供商那里得到了一些信息,但如何集成请指导。

批量SMS印度开发人员API

HTTP API详细信息

发送短信(逗号分隔):

http://bulksmsindia.mobi/sendurlcomma.aspx?user=profileid&pwd=password&senderid=ABC&mobileno=9999999989,9999999990,9999999991&msgtext=Hello
代码示例:(发送短信)

\'\'\'\'write code for loop while (you can open record set here)
 sResponse = ""
 sResponse = SMSSend(pno, message )
 If right(sResponse,15) = "Send Successful" Then
 \'write your code here
 End If
 \'\'\'End Wend
 Function SMSSend (strPh,strMsg)

 Dim msgResponse
 Dim strRequest
 Dim strUrl
 msgResponse = ""

 strPh=right(strPh,10)
 If not IsNumeric(strPh) Or len(strPh) <> 10 Then
 msgResponse = "Enter valid Mobile Number."
 End If
 If strMsg = "" Then
 msgResponse = "Enter text message."
 End If

 strUrl = "http://bulksmsindia.mobi/sendurlcomma.asp?"
 strRequest = strRequest+"&user=profileid"
 strRequest = strRequest+"&pwd=pass"
 strRequest = strRequest+"&senderid=senderid"
 strRequest = strRequest+"&mobileno="+strPh
 strRequest = strRequest+"&msgtext="+Server.URLEncode(strMsg)

 strUrl = strUrl+strRequest

 If msgResponse = "" Then
 Dim oXML
 Dim sPage
 Err.Clear
 On Error Resume Next
 Set oXML = Server.CreateObject("Msxml2.XMLHTTP")
 oXML.Open "get", strUrl , false
 oXML.Send
 msgResponse = oXML.ResponseText
 Set oXML = Nothing
 End If

 SMSSend = msgResponse

 If Err.Number <> 0 Then
 SMSSend = "Problem on sending sms : "& Err.Description
 End If

 End Function

1 个回复
SO网友:rtpHarry

将SMS集成到联系人表单7中的最佳方法是找到支持电子邮件接口的SMS提供商来发送SMS。

然后只需在配置表单的底部勾选Mail 2,您就可以将您的消息放入其中。

我过去用Kapow短信网关做过这件事。

相关推荐

Verify signup via SMS?

有谁知道WordPress有一个插件,需要新用户在注册过程中输入手机号码?然后通过短信向用户发送验证码,用户必须输入验证码才能完成注册过程。有什么想法吗?谢谢