Skip to content

Instantly share code, notes, and snippets.

@RobSpectre
Created August 19, 2011 20:35
Show Gist options
  • Save RobSpectre/1157936 to your computer and use it in GitHub Desktop.
Save RobSpectre/1157936 to your computer and use it in GitHub Desktop.
SMS Readback
<?php
$number = $_REQUEST['From'];
$body = $_REQUEST['Body'];
$call = $client->account->calls->create(
$from,
$number,
'http://path/to/your/callback.php?body=' . $body
);
?>
<?php
$message = $_REQUEST['body'];
?>
<Response>
<Say><?php echo message; ?></Say>
</Response>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment