Skip to content

Instantly share code, notes, and snippets.

@vernig
Created April 6, 2020 18:49
Show Gist options
  • Save vernig/a53d5c8394840c9e08f039fc5ebc1aef to your computer and use it in GitHub Desktop.
Save vernig/a53d5c8394840c9e08f039fc5ebc1aef to your computer and use it in GitHub Desktop.
Simple messaging with alphanumeric
const accountSid = '<your account sid>';
const authToken = '<your auth token>';
const client = require('twilio')(accountSid, authToken);
client.messages
.create({body: 'Hi there!', from: 'leitha', to: '<your destination number>'})
.then(message => console.log(message.sid));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment