Gửi tin nhắn whatsapp bằng laravel
Cài đặt thư viện twilio
composer require twilio/sdk
Code chạy gửi tin nhắn trên laravel
use Twilio\Rest\Client;
$sid = "AC3***********************3";
$token = "[AuthToken]";
$twilio = new Client($sid, $token);
$message = $twilio->messages
->create("whatsapp:+84900909998", // to
array(
"from" => "whatsapp:+14544565764353",
"body" => "Hành tinh công nghệ"
)
);