Skip to content

Instantly share code, notes, and snippets.

@bcruddy
Created May 26, 2016 20:55
Show Gist options
  • Save bcruddy/2a5bb8ac0ee538519a45fc2b39258f05 to your computer and use it in GitHub Desktop.
Save bcruddy/2a5bb8ac0ee538519a45fc2b39258f05 to your computer and use it in GitHub Desktop.
const twilio = require('twilio')('yourAccountSid', 'yourAuthToken');
twilio.messages.create({ from: 'yourTwilioNumber', to: 'recipientNumber', body: 'two lines of code!'}, (err, res) => { console.log(res); });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment