Skip to content

Instantly share code, notes, and snippets.

@pedryvo
Forked from libryder/contact.php
Created August 7, 2017 19:31
Show Gist options
  • Save pedryvo/05784b80a1fda3cb7af6e9d0f08fadb7 to your computer and use it in GitHub Desktop.
Save pedryvo/05784b80a1fda3cb7af6e9d0f08fadb7 to your computer and use it in GitHub Desktop.
Super simple PHP contact form in one file
<html>
<head>
<title>Contact Us</title>
</head>
<body>
<?php
if ($_POST['message']) {
$message = $_POST['message'];
$email = $_POST['email'];
$name = $_POST['name'];
$headers = "From: ".$name."<".$email.">";
mail('[email protected]', "Contact from RRR", $message, $headers)
echo "Thanks for contacting us!<br /><br />";
}
?>
<form action="" method="post">
Name<br />
<input type="text" name="name" /> <br />
Email<br />
<input type="text" name="email" /><br /><br />
Message<br />
<textarea name="message" cols="50" rows="5"></textarea>
</form>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment