const accountSid = 'я уберу id';
const authToken = 'я уберу token';
const client = require('twilio')(accountSid, authToken);
client.messages.create({
body: 'This is the ship that made the Kessel Run in fourteen parsecs?',
from: '+номер откуда',
to: '+номер куда'
}).then(message => console.log(message.sid));
console.log('twilio');