Skip to content

Instantly share code, notes, and snippets.

@caseysoftware
Created June 26, 2013 16:52
Show Gist options
  • Select an option

  • Save caseysoftware/5869171 to your computer and use it in GitHub Desktop.

Select an option

Save caseysoftware/5869171 to your computer and use it in GitHub Desktop.
This is the script to send a message
<?php
require 'Services/Twilio.php';
include 'credentials.php';
$client = new Services_Twilio($AccountSid, $AuthToken);
$call = $client->account->sms_messages->create(
'1512-555-1212', // From this number
'17035551212', // Send to this number
'Hello monkey!!'
);
print $call->sid;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment