The contact form is working just fine but I can't figure how to setup the "reply mail". The PHP code is as follows:
<?php
// Get Data
$name = strip_tags($_POST['name']);
$email = strip_tags($_POST['email']);
$message = strip_tags($_POST['message']);
// Send Message
mail( "Message from $name",
"Name: $name\nEmail: $email\nMessage: $message\n",
"From: $name <forms@example.net>" );
?>
What I tried to do is replace "forms@example.com" with $email but for some reason it crashes and never sends anything.