Skip to content

Instantly share code, notes, and snippets.

@kwhinnery
Created September 8, 2014 22:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kwhinnery/f2b4c125a756c323d985 to your computer and use it in GitHub Desktop.
Save kwhinnery/f2b4c125a756c323d985 to your computer and use it in GitHub Desktop.
Route::match(array('GET', 'POST'), '/incoming', function()
{
$twiml = new Services_Twilio_Twiml();
$twiml->say('Hello - your app just answered the phone. Neat, eh?', array('voice' => 'alice'));
$response = Response::make($twiml, 200);
$response->header('Content-Type', 'text/xml');
return $response;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment