如何通过PHP表单发送短信?

问题描述 投票:0回答:3

我有一个简单的PHP表单用于发送短信,我正在尝试向一个号码发送短信,但它给了我一条成功消息“短信已发送...”以及错误“无效的用户名/密码”。

我通过把它放在浏览器中手动检查链接它工作正常,我通过这个过程得到了短信....

请帮我解决这个!!!

<?php
if(isset($_POST['submit']))
{

$number=$_POST['numbertext'].$_POST['number'];
$message=$_POST['message'];


$var="http://sms.************.com/*****.asp?user=username&password=
password&sender=sender&sendercdma=**********&text=".$message."&PhoneNumber=".$number."&track=1";

    echo $var;

    $curl=curl_init('http://sms.************.com/*****.asp');
    curl_setopt($curl, CURLOPT_POST, true);
    curl_setopt($curl, CURLOPT_POSTFIELDS, $var);
    curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
    $result= curl_exec($curl);
    echo $result;
    curl_close($curl);
    die("SMS has sent.....");

    }

?>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>

<body>

<form method="post">
Number:<br/>
<input type="text" name="numbertext" />-<input type="text" name="number" />
<br/><br/>

<br/><br/>
Message:<br/>
<textarea name="message"></textarea>

<input type="submit" name="submit" value="Send"/>
</form>
</body>
</html>
php sms-gateway
3个回答
2
投票

发送短信通过msg91 API,我仍然不清楚您的API输入。

$YourAuthKey="Your Key";
$mobiles="number";
$message="Transactional Message";
$country=91;
$senderid="XYZMSG";
$url="https://control.msg91.com/api/sendhttp.php?authkey=".$YourAuthKey."&mobiles=".$mobiles."&message=".$message."&sender=".$senderid."&route=4&country=91";
echo $url;
header("Location: $url");

2
投票

通过检查他们的api,你应该做如下:

$postData = array(
    'authkey' => $authKey,
    'mobiles' => $mobileNumber,
    'message' => $message,
    'sender' => $senderId,
    'route' => $route
);

//API URL
$url="https://control.msg91.com/api/sendhttp.php";

// init the resource
$ch = curl_init();
curl_setopt_array($ch, array(
    CURLOPT_URL => $url,
    CURLOPT_RETURNTRANSFER => true,
    CURLOPT_POST => true,
    CURLOPT_POSTFIELDS => $postData
));

绝对不能通过你的网址如下:

curl_setopt($curl, CURLOPT_POSTFIELDS, $var);

-1
投票

您可以使用mvayoo api轻松发送短信,首先在www.mvaayoo.com上创建帐户。然后你会得到你的用户名,密码详细信息。在以下代码中填写此详细信息并轻松发送短信

<?php$ch = curl_init();
 $user="enter your account email id here:enter your password here";
 $receipientno="enter recivermobile number here";
 $senderID="TEST SMS";
 $msgtxt="this is test message, test";
 curl_setopt($ch,CURLOPT_URL, "http://api.mVaayoo.com/mvaayooapi/MessageCompose");
 curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
 curl_setopt($ch, CURLOPT_POST, 1);
 curl_setopt($ch, CURLOPT_POSTFIELDS,"user=$user&senderID=$senderID&receipientno=$receipientno&msgtxt=$msgtxt");
 $buffer = curl_exec($ch);
 if(empty ($buffer)){
   echo " buffer is empty ";
 }else{
   echo $buffer;
 }
 curl_close($ch);
>

呜呜呜.GA局AB WAP.blogspot.in

© www.soinside.com 2019 - 2024. All rights reserved.