自动将订单确认发送到客户的手机号码

时间:2015-12-19 作者:Nirav

我正在尝试从Textlocal实现下面的SMS API。我在其中收到了。我想向在此网站上下订单的客户发送自动订单确认短信。http://52.77.236.176/

    <?php
    // Textlocal account details
    $username = \'[email protected]\';
    $hash = \'Your API hash\';

    // Message details
    $numbers = array(918123456789, 918987654321);
    $sender = urlencode(\'TXTLCL\');
    $message = rawurlencode(\'This is your message\');

    $numbers = implode(\',\', $numbers);

    // Prepare data for POST request
    $data = array(\'username\' => $username, \'hash\' => $hash, \'numbers\' => $numbers, "sender" => $sender, "message" => $message);

    // Send the POST request with cURL
    $ch = curl_init(\'http://api.textlocal.in/send/\');
    curl_setopt($ch, CURLOPT_POST, true);
    curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    $response = curl_exec($ch);
    curl_close($ch);

    // Process your response here
    echo $response;
?>
现在,我对在wordpress中应该把代码放在哪里感到困惑。我是说在哪一页?

1 个回复
SO网友:montrealist

这是一个名为Woocommerce的电子商务插件,您需要了解它们的挂钩,例如woocommerce_new_order here. 粘贴的代码通常位于活动主题的functions.php. 所有主题都位于wp-content/themes, 您可以在左侧菜单的管理仪表板的外观主题下轻松检查哪个主题处于活动状态。

相关推荐

创建帖子,包含来自远程API的数据

我需要一些帮助和指导。因此,我正在开发一个网站(自定义主题),目标是从远程API获取数据。我希望能够将数据存储在各个帖子中(一种自定义帖子类型),当有人向远程API添加或删除数据时,它应该会更新网站上的帖子。我使用的API的结构如下:https://pippinsplugins.com/edd-api/products我知道如何从中获取数据并解码JSON等。$url = \'https://pippinsplugins.com/edd-api/products\'; $username