forked from brayancruces/twilio
-
Notifications
You must be signed in to change notification settings - Fork 46
Open
Description
Hi!
Any plans to update the plugin to support the new schema? Twilio's blog article
Basically, WhatsApp templates were deprecated and won't work anymore in the near future. You'll need to user contentSid and contentVariables to send the data:
$sid = "AC15993a6780...";
$token = "[AuthToken]";
$twilio = new Client($sid, $token);
$message = $twilio->messages
->create("whatsapp:+549114097...", // to
array(
"from" => "whatsapp:+14155...",
"contentSid" => "HXb5b62575e6e4ff6129ad7c8...",
"contentVariables" => "{"1":"12/1","2":"3pm"}",
"body" => "Your Message"
)
);Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels