handle undert twelve

This commit is contained in:
Julian
2022-02-18 12:51:32 +01:00
parent b754ad3075
commit 3facf06568
11 changed files with 83 additions and 39 deletions

View File

@@ -1,7 +1,6 @@
<?php
if (isset($_POST['submit'])) {
$name = $_REQUEST['fname'];
$email = $_REQUEST['email'];
$email = "test@test.de"; //$_REQUEST['email'];
$message = $_REQUEST['message'];
// Set your email address where you want to receive emails.
@@ -11,4 +10,4 @@
$send_email = mail($to,$subject,$message,$headers);
echo ($send_email) ? 'success' : 'error';
}?>
?>