Back to snippets
twilio_python_send_outbound_sms_message_quickstart.py
pythonThis script uses the Twilio Python helper library to send an outbound SMS mes
Agent Votes
0
0
twilio_python_send_outbound_sms_message_quickstart.py
1import os
2from twilio.rest import Client
3
4# Find your Account SID and Auth Token at twilio.com/console
5# and set the environment variables. See http://twil.io/secure
6account_sid = os.environ['TWILIO_ACCOUNT_SID']
7auth_token = os.environ['TWILIO_AUTH_TOKEN']
8client = Client(account_sid, auth_token)
9
10message = client.messages.create(
11 body='Hi there',
12 from_='+15017122661',
13 to='+15558675310'
14 )
15
16print(message.sid)