send notification to whatsapp or phone

hello, thank you very much for trouble
I wanna ask, can you send notification to whatsapp or phone
I got project that let people rent car & bus , and I have a table page that let me check if I got an order.
so I want , If the customer click “ORDER” car,
I receive the order details or some kind notification on my whats’app /phone , like “You have an order, click this link” or “check this link (page link)”
May I know if wix has this features ?
thanks again in advance :slight_smile:

this is my order page


this is my table page

Hey
You can send yourself a sms message through some sms service. I use Twilios SMS service through Zapier and it works for me and all my clients. Supernice!

My sample code here for you.

export function sendSMS(phone,message,link)
 let updateData = {
 "phone": phone,
 "message": message,
 "link": link
    };
 updateData = JSON.stringify(updateData);
 fetch("paste in your zapier webhook url here",
    {
 method: "POST",
 body: updateData,
    })
    .then(function(res){ console.log(res.json()); })
    .then(function(data){ console.log(JSON.stringify(data)); });
}

let number = "your phone inc country code";
let link = "your short url link";
// -----------------------
// SEND SMS HERE
// -----------------------'
let message = "";
message += "Hey\n";
message += "You got an order.\n";
message += "Click link to admin\n"; // \n is new line
sendSMS(number,message,link);

Hi Andreas,

Do you have a step by step guide on how to do this or a video on your channel by any chance?
Thanks!