To send a WhatsApp message from a PHP script, you can use the WhatsApp API provided by Twilio. Here is an example of how you can send a message using the Twilio PHP library:
Copy code<?php
// Your Account SID and Auth Token from twilio.com/console
$sid = 'ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX';
$token = 'your_auth_token';
$client = new Twilio\Rest\Client($sid, $token);
// Use the client to do fun stuff like send text messages!
$client->messages->create(
// the number you'd like to send the message to
'+1234567890',
array(
// A Twilio phone number you purchased at twilio.com/console
'from' => '+0987654321',
// the body of the text message you'd like to send
'body' => 'Hey there! This is a test message from PHP.'
)
);
echo "Message sent successfully!";
?>
To use this code, you will need to sign up for a Twilio account and obtain your Account SID and Auth Token. You will also need to purchase a Twilio phone number, which you can use as the “from” number in the message.
I hope this helps! Let me know if you have any questions or need further assistance.