L’accès à cet article est réservé aux adhérents d’AVF. Pour y accéder veuillez-vous identifier ci-dessous :
Contact Atelier Artistique
<?php //If the form is submitted if(isset($_POST['submitted'])) { //Check to see if the honeypot captcha field was filled in if(trim($_POST['checking']) !== '') { $captchaError = true; } else { //Check to make sure that the name field is not empty if(trim($_POST['contactName']) === '') { $nameError = 'Indiquez votre nom.'; $hasError = true; } else { $name = trim($_POST['contactName']); } //Check to make sure sure that a valid email address is submitted if(trim($_POST['email']) === '') { $emailError = 'Indiquez une adresse e-mail valide.'; $hasError = true; } else if (!eregi("^[A-Z0-9._%-]+@[A-Z0-9._%-]+\.[A-Z]{2,4}$", trim($_POST['email']))) { $emailError = 'Adresse e-mail invalide.'; $hasError = true; } else { $email = trim($_POST['email']); } //Check to make sure comments were entered if(trim($_POST['comments']) === '') { $commentError = 'Entrez votre message.'; $hasError = true; } else { if(function_exists('stripslashes')) { $comments = stripslashes(trim($_POST['comments'])); } else { $comments = trim($_POST['comments']); } } //If there is no error, send the email if(!isset($hasError)) { $emailTo = 'patricia.jagou@orange.fr'; $subject = 'Formulaire de contact de '.$name; $sendCopy = trim($_POST['sendCopy']); $body = "Name: $name \n\nEmail: $email \n\nComments: $comments"; $headers = 'De : mon site ‘ . « \r\n » . ‘Répondre à : ‘ . $email; mail($emailTo, $subject, $body, $headers); if($sendCopy == true) { $subject = ‘Formulaire de contact’; $headers = ‘De : ‘; mail($email, $subject, $body, $headers); } $emailSent = true; } } } ?> <script type="text/javascript" src="/scripts/contact-form.js »>Merci,
Votre e-mail a été envoyé avec succès. Vous recevrez une réponse sous peu.
Une erreur est survenue lors de l’envoi du formulaire.
<form action=" » id= »contactForm » method= »post »>- <input type="text" name="contactName" id="contactName" value=" » class= »requiredField » />
- <input type="text" name="email" id="email" value=" » class= »requiredField email » />
- <input type="checkbox" name="sendCopy" id="sendCopy" value="true" />
- <input type="text" name="checking" id="checking" class="screenReader" value=" » />