You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
608 B

<?php
if ($_SERVER["REQUEST_METHOD"] == "POST") {
$name = $_POST["name"];
$email = $_POST["email"];
$subject = $_POST["subject"];
$message = $_POST["message"];
$to = "hugo.creneau@etu.uca.fr";
$email_subject = "New Contact Form Submission: $subject";
$email_body = "You have received a new message from $name ($email):\n\n$message";
$from = "hugo.crneau@gmail.com";
$headers = "From: $from\r\n";
$headers .= "Reply-To: $email\r\n";
if (mail($to, $email_subject, $email_body, $headers)) {
echo "success";
} else {
echo "error";
}
}
?>