<!doctype html>
To be kept informed of developments to this site, please enter your <input type="text" name="email" placeholder="email address here" (We will not share it with anyone else).
<?php
if (isset($_REQUEST['email'])) {
$admin_email = "[email protected]";
$email = $_REQUEST['email'];
$subject = $email;
mail($admin_email, $subject, $email);
echo "Thank you for contacting us!";
}
?>
</body>