rajout du support utf8

Signed-off-by: kevlarcade <kevlarcade@gmail.com>
This commit is contained in:
kevlarcade 2017-03-16 15:53:46 +01:00
parent 169c4d9b24
commit a1b50c3d01

View File

@ -1,4 +1,5 @@
<?php <?php
mb_internal_encoding("UTF-8");
// Check for empty fields // Check for empty fields
if(empty($_POST['name']) || if(empty($_POST['name']) ||
empty($_POST['email']) || empty($_POST['email']) ||
@ -21,6 +22,6 @@ $email_body = "Vous avez recu un message depuis le formulaire du site.\n\n"."Voi
$headers = "From: noreply@labolyon.fr\n"; $headers = "From: noreply@labolyon.fr\n";
$headers .= "Reply-To: $email_address"; $headers .= "Reply-To: $email_address";
$headers .= "Date: ".date("r"); $headers .= "Date: ".date("r");
mail($to,utf8_encode($email_subject),utf8_encode($email_body),$headers); mail($to,$email_subject,$email_body,$headers);
return true; return true;
?> ?>