Skip to content

Instantly share code, notes, and snippets.

View cavettbinion's full-sized avatar

Cavett Binion cavettbinion

View GitHub Profile
@RobSpectre
RobSpectre / sms_forward.php
Created November 23, 2011 20:49
SMS forwarding
<?php
header('Content-type: text/xml');
$message = $_REQUEST['Body'];
?>
<Response>
<Sms to="{{YOUR_NUMBER}}"><?php echo $message; ?></Sms>
</Response>