Skip to content

Instantly share code, notes, and snippets.

@devinrader
Created July 9, 2013 17:21
Show Gist options
  • Save devinrader/5959296 to your computer and use it in GitHub Desktop.
Save devinrader/5959296 to your computer and use it in GitHub Desktop.
local twilio = require('twilio')
local ACCOUNTSID = '[account_sid]'
local AUTHTOKEN = '[auth_token]'
local PHONENUMBER = '+14259678361'
local response = twilio.sms(ACCOUNTSID, AUTHTOKEN,
PHONENUMBER,
'+15555555555',
'The Monkey Party is at 6PM. Bring Bananas!')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment