如何将短信回复(回复短信发送到twilio的短信)发送到特定号码?现在,当我回复邮件时,我在twilio帐户中看到了这些邮件。我希望将这些回复短信发送到一个特定的手机号码。
我该怎么做?提前谢谢。
答案 0 :(得分:0)
Twilio开发者传道者在这里。
您可以使用Messages list resource将发送到Twilio号码的所有邮件或已发送给您的Twilio号码的号码发送给所有邮件。您可以使用URL parameters过滤发送或发送邮件的号码。
要将所有消息发送到PHP中的数字,您可以使用helper library和此代码:
// Require composer's autoload to load dependencies. Not required if your environment handles this for you.
require __DIR__ . '/vendor/autoload.php';
use Twilio\Rest\Client;
// Your Account Sid and Auth Token from twilio.com/user/account
$sid = "your_account_sid";
$token = "your_auth_token";
$client = new Client($sid, $token);
foreach ($client->account->messages(array('From' => 'NUMBER')) as $message) {
echo $message->body;
}
让我知道这是否有帮助。