Skip to content

Instantly share code, notes, and snippets.

@RobSpectre
Created April 27, 2013 23:19
Show Gist options
  • Select an option

  • Save RobSpectre/5475141 to your computer and use it in GitHub Desktop.

Select an option

Save RobSpectre/5475141 to your computer and use it in GitHub Desktop.
<?php
// Documentation is here: https://twilio-php.readthedocs.org/en/latest/
require_once('auth.php');
require_once('Services/Twilio.php');
$client = new Services_Twilio($ACCOUNT_SID, $AUTH_TOKEN);
$message = $client->account->sms_messages->create(
'+17189891458',
'+12024127010',
'Dude. I hope this shit works. I haven\'t written PHP in years.'
);
print $message->sid;
?>
@rutkat
Copy link
Copy Markdown

rutkat commented Apr 28, 2013

Thanks Rob!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment