Skip to content

Instantly share code, notes, and snippets.

@ejcer
Created September 5, 2015 23:05
Show Gist options
  • Save ejcer/10b1e5436d4889aa3e3d to your computer and use it in GitHub Desktop.
Save ejcer/10b1e5436d4889aa3e3d to your computer and use it in GitHub Desktop.
__author__ = 'emcenrue'
# Download the Python helper library from twilio.com/docs/python/install
from twilio.rest import TwilioRestClient
# Your Account Sid and Auth Token from twilio.com/user/account
account_sid = "594e70312e0a1bfcfb63073e64c517bd"
auth_token = "{{ 594e70312e0a1bfcfb63073e64c517bd }}"
client = TwilioRestClient(account_sid, auth_token)
message = client.messages.create(body="Jenny please?! I love you <3",
to="+15714880711",
from_="+15714880711")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment