Skip to content

Instantly share code, notes, and snippets.

@vernig
Last active April 6, 2020 18:52
Show Gist options
  • Select an option

  • Save vernig/90917cb85f82d1a4b8502c958ea380ee to your computer and use it in GitHub Desktop.

Select an option

Save vernig/90917cb85f82d1a4b8502c958ea380ee 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