用PHP通过电子邮件发送短信

时间:2014-02-10 06:08:04

标签: php

这个概念的新手。我试图使用电子邮件编码发送短信。但我无法发送bcoz没有正确的移动网关。我需要Airtel Tamil Nadu或Vodafone Karnataka的承运人和通道。这是我用过的代码......

if(isset($_POST['send']))
{
    $message=$_REQUEST['msg'];
    $to = '91'.$_REQUEST['number'].'@airtelmobile.com';

    $result = mail( $to, 'Test SMS', $message );
    if($result)
    {
        echo "Message Sent";
    }   
    else
    {
        echo "Message Not Sent";
    }   
}

4 个答案:

答案 0 :(得分:1)

为此,您需要购买批量短信(尝试在Google群发短信提供商中搜索),他们将为您提供发送短信的短信API。

答案 1 :(得分:0)

请阅读本文,他们使用smsNow API使用php脚本发送短信。

http://www.nowsms.com/doc/submitting-sms-messages/send-sms-text-message-with-php

答案 2 :(得分:0)

你需要短信api。

首先,您需要搜索一些批量短信提供商。他们将为您提供PHP或其他语言脚本。你可以将它们嵌入到你的PHP代码中并使用它。我给你一些链接,以便你可以轻松找到批量短信提供商

http://www.sarvsms.com

http://www.mvaayoo.com

答案 3 :(得分:0)

发送电子邮件至短信

您需要正确的邮件地址。

我找到了一份清单。对于airtel tamilnadu。

91xxxxxxxxxx@airtelmail.com

下面的链接会显示其他内容: 的 http://asiancorrespondent.com/675/email-to-sms-sending-a-free-sms-in-india/

尝试使用您的邮件服务(即Gmail或Hotmail等)。你收到了短信。然后尝试在PHP中实现。确保您的电子邮件代码正常运行。

希望这会有所帮助。