diff options
Diffstat (limited to 'assets/php')
-rw-r--r-- | assets/php/contact-form.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/assets/php/contact-form.php b/assets/php/contact-form.php new file mode 100644 index 0000000..f3bdfcb --- /dev/null +++ b/assets/php/contact-form.php @@ -0,0 +1,16 @@ +<?php + $name = $_POST['name']; + $email = $_POST['email']; + $message = $_POST['message']; + $to = 'your-email@example.com'; //<-- Enter your E-Mail address here. + $subject = $_POST['subject']; + + $body = "From: $name <br> E-Mail: $email <br> Message: <br> $message"; + + $headers = 'MIME-Version: 1.0' . "\r\n"; + $headers .= 'Content-type: text/html; charset=utf-8' . "\r\n"; + $headers .= 'From:' . $email. "\r\n"; + $headers .= 'Cc:' . $email. "\r\n"; + + mail($to, "New Message from Website: $subject", $body, $headers); +?>
\ No newline at end of file |