Twilio and Nodejs | How to send SMS Text Messages from Node js

Опубликовано: 28 Ноябрь 2024
на канале: sahul
20,392
245

In This video we are going to learn how to send sms text messages from node js using a third party called twilio

Twilio :
https://www.twilio.com/

source code :
var sid = "xxxxxxxxxxxxxxxxxxxxxxxxxxx";
var auth_token = "xxxxxxxxxxxxxxxxxxxxxxxxx;

var twilio = require("twilio")(sid, auth_token);

twilio.messages
.create({
from: "+1xxxxxxxxxx",
to: "+9199999xxxxxx",
body: "this is a testing message",
})
.then(function(res) {console.log("message has sent!")})
.catch(function(err) {
console.log(err);
});