How to send whatsapp notification using FaxSMS Module v3.0.0

how can i send whatsapp notification using FaxSMS Module v3.0.0 .I am using twilio whatsapp for the notifications.Do i need to make any chnages in FaxSMS Module to send as whatsapp message than sms?

Hi @Yara_Munees ,
You can try also without making changes to the FaxSMS module, using with Twilio Client alone and use the Twilio client to send notification via Whatsapp, can try this code and check,

use Twilio\Rest\Client;

// Find your Account SID and Auth Token at twilio.com/console
// and set the environment variables. See http://twil.io/secure
$sid = getenv("TWILIO_ACCOUNT_SID");
$token = getenv("TWILIO_AUTH_TOKEN");
$twilio = new Client($sid, $token);

$message = $twilio->messages
                  ->create("whatsapp:+1987654321", // to
                           [
                               "from" => "whatsapp:+55123456789",
                               "body" => "Your appointment is booked"
                           ]
                  );

print($message->sid);

If you have more queries please contact openemr.support@visolve.com .

Thanks,
-Visolve-AI-team (GK).