aboutsummaryrefslogtreecommitdiff
path: root/Html/mailer.php
diff options
context:
space:
mode:
Diffstat (limited to 'Html/mailer.php')
-rw-r--r--Html/mailer.php28
1 files changed, 28 insertions, 0 deletions
diff --git a/Html/mailer.php b/Html/mailer.php
new file mode 100644
index 0000000..88230c9
--- /dev/null
+++ b/Html/mailer.php
@@ -0,0 +1,28 @@
+<?php
+
+require_once('includes/config.php');
+
+$name = $_REQUEST["name"];
+$subject = $_REQUEST["subject"];
+$message = strip_tags($_REQUEST["message"]);
+$from = $_REQUEST["from"];
+$verif_box = $_REQUEST["verif_box"];
+
+$name = stripslashes($name);
+$message = stripslashes(strip_tags($message));
+$subject = stripslashes($subject);
+$from = stripslashes($from);
+
+
+if(md5($verif_box).'a4xn' == $_COOKIE['tntcon']){
+ $message = "Nom: ".$name."\n".$message;
+ $message = "De: ".$from."\n".$message;
+ mail(SITEMAIL, 'Message: '.$subject, $_SERVER['REMOTE_ADDR']."\n\n".$message, "From: $from");
+ header("Location: contact.php?action=ok");
+ setcookie('tntcon','');
+} else {
+ header("Location:".$_SERVER['HTTP_REFERER']."?subject=$subject&from=$from&message=$message&wrong_code=true");
+ //header("Location: contact.php");
+}
+?>
+