Merci de me donner un coup de pouce!!!
Voici mon code php:
<?php
// Fields, which will be included in the form
$name = $_POST['name'];
$email = $_POST['email'];
$subject = $_POST['subject'];
$message = $_POST['message'];
// Fields, which will be included in the email
$formcontent="Name: $name \nEmail: $email \nSubject: $subject \nMessage: $message";
// Insert your email below
$recipient = "[email protected]";
// Change the subject of the form below
$subject = "Contact Form Basic";
$mailheader = "From: $email \r\n";
mail($recipient, $subject, $formcontent, $mailheader) or die("Error!");
// Below is simple thank you message with few styles - change it to fit your needs and also adjust the return page (index.html)
echo
"<div style='display: block; width: 300px; margin: 50px auto 0 auto; text-align: center; font-family: Arial, Helvetica;'>" .
"<span style='font-size: 20px; color: #222; display: block;'>Merci pour votre message!</span>" .
"<a href='index.html' style='text-decoration: none; color: #FF2424;'>Retour au site mon stage photo</a>" .
"</div>";
?>