Skip to content

Instantly share code, notes, and snippets.

@caseysoftware
Created June 24, 2013 20:19
Show Gist options
  • Save caseysoftware/5853261 to your computer and use it in GitHub Desktop.
Save caseysoftware/5853261 to your computer and use it in GitHub Desktop.
helloworld2.php
<?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
'1703-555-1212', // Send to this number
'Hello monkey!!'
);
print $call->length;
print $call->sid;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment