Twilio has the easiest messaging setup. This is the whole python script required to send a message. Account SID and Token have been removed. ``` # Download the helper library from https://www.twilio.com/docs/python/install import os from twilio.rest import Client # Find your Account SID and Auth Token at twilio.com/console # and set the environment variables. See http://twil.io/secure account_sid = "REMOVED" auth_token = "REMOVED" client = Client(account_sid, auth_token) message = client.messages.create( body="This is the ship that made the Kessel Run in fourteen parsecs?", from_="+14012677777", to="+14014411557", ) print(message.body) ``` when I run this I get: ![[Pasted image 20241028225724.png]] the message parrotted back out and I know it's been sent successfully.