php 使用Twilio API发送短信通知

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 使用Twilio API发送短信通知相关的知识,希望对你有一定的参考价值。

<?php
// Get the PHP helper library from twilio.com/docs/php/install
require_once 'twilio/autoload.php'; // Loads the library
use Twilio\Rest\Client;

// Your account details via twilio.com/user/account
$sid = "xxxxxxxxxxxxxxxxxx";    //Account Sid
$token = "xxxxxxxxxxxxxxxxxx";  //Auth Token
$client = new Client($sid, $token);

$client->messages->create(
    '+xxxxxxxxx',  //Destination number
    array(
        'from' => '+xxxxxxxxx', //Source (twilio) number
        'body' => "Message" //Message to be delivered
    )
);
?>

以上是关于php 使用Twilio API发送短信通知的主要内容,如果未能解决你的问题,请参考以下文章

如何让 Twilio 向我以外的其他人发送短信

无法向菲律宾号码发送可编程短信 (Twilio)

限制使用 twilio whatsapp API 发送消息

Twilio SMS 物理电话集成

使用 FCM 和 Twilio 发送短信

使用 Twilio 和 Android 发送短信