Skip to content

Instantly share code, notes, and snippets.

@RobSpectre
Created November 23, 2011 20:49
Show Gist options
  • Save RobSpectre/1389863 to your computer and use it in GitHub Desktop.
Save RobSpectre/1389863 to your computer and use it in GitHub Desktop.
SMS forwarding
<?php
header('Content-type: text/xml');
$message = $_REQUEST['Body'];
?>
<Response>
<Sms to="{{YOUR_NUMBER}}"><?php echo $message; ?></Sms>
</Response>
@cavettbinion
Copy link

Thanks Rob! Very helpful.

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