';
echo ' '; //Place the desired response (if any) here
/**
* This section actually sends the email.
*/
$to = "admin@thelandbox.com"; // Your email address <<--CHANGE THIS
$subject = "Message from {$_REQUEST['From']} at {$_REQUEST['To']}";
$message = "We have received a Text Message from {$_REQUEST['From']}.
Body: {$_REQUEST['Body']}";
$headers = "From: admin@thelandbox.com"; // Who should it come from? <<-- CHANGE THIS
mail($to, $subject, $message, $headers);
?>
