-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmail.php
56 lines (50 loc) · 1.86 KB
/
mail.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php
$to = '[email protected] , [email protected]';
extract($_POST);
$nom_txt = strip_tags($name);
$email_txt = strip_tags($email);
$message_txt = strip_tags($message);
$phone_txt = strip_tags($phone);
$subject_txt = strip_tags($subject);
//=====Vérifier si les valeurs sont vides
if(empty($nom_txt) ||
empty($email_txt) ||
empty($message_txt) ||
empty($phone_txt) ||
empty($subject_txt) ||
!filter_var($email_txt,FILTER_VALIDATE_EMAIL))
{
http_response_code(406);
exit;
}
//=====Convertire les saut de ligne suivant les serveurs :
if (!preg_match("#^[a-z0-9._-]+@(hotmail|live|msn).[a-z]{2,4}$#", $to))
{
$passage_ligne = "\r\n";
}
else
{
$passage_ligne = "\n";
}
//=====Création de la boundary
$boundary = "-----=".md5(rand());
//=====Définition du sujet.
$subject = "From ms-innov.com - \"".$subject_txt."\"";
//=====Création du header de l'e-mail.
$header = "From: \"".$nom_txt."\"<".$email_txt.">".$passage_ligne;
$header.= "Reply-to: \"".$nom_txt."\"<".$email_txt.">".$passage_ligne;
$header.= "MIME-Version: 1.0".$passage_ligne;
$header.= "Content-Type: multipart/alternative;".$passage_ligne." boundary=\"$boundary\"".$passage_ligne;
//=====Création du message.
$msg = $passage_ligne."--".$boundary.$passage_ligne;
$msg.= "Content-Type: text/plain; charset=\"ISO-8859-1\"".$passage_ligne;
$msg.= "Content-Transfer-Encoding: 8bit".$passage_ligne;
$msg.= $passage_ligne."Nom : ".$nom_txt.$passage_ligne;
$msg.= $passage_ligne."Email : ".$email_txt.$passage_ligne;
$msg.= $passage_ligne."Tel : ".$phone_txt.$passage_ligne;
$msg.= $passage_ligne.$message_txt.$passage_ligne;
$msg.= $passage_ligne."--".$boundary."--".$passage_ligne;
$msg.= $passage_ligne."--".$boundary."--".$passage_ligne;
//=====Envoi de l'e-mail.
mail($to,$subject,$msg,$header);
?>