test

foto1
foto1
foto1
foto1
foto1
JOURNALS OF SCIENTIFICS R&D
'; //User info (DO NOT EDIT!) $name = stripslashes($_POST['name']); //sender's name $email = stripslashes($_POST['email']); //sender's email //The default subject. Will appear by default in all messages. Change this if you want. $subject = stripslashes($_POST['Subject']); // the subject $message = stripslashes($_POST['message']); //sender's country $pop= 'The message was successfully sent.'; $msg .= "$subject \r\n\n"; //add subject to the message (optional! It will be displayed in the header anyway) $msg = "From : $name \r\n\n"; //add sender's name to the message $msg .= "E-Mail : $email \r\n\n"; //add sender's website to the message $msg .= "subject: $subject \r\n\n"; //add sender's website to the message $msg .= "---Message--- \r\n\n".stripslashes($_POST['message'])."\r\n\n"; //the message itself //Extras: User info (Optional!) //Delete this part if you don't need it //Display user information such as Ip address and browsers information... $msg .= "---Contact information--- \r\n\n"; //Title $msg .= "Son IP : ".$_SERVER["REMOTE_ADDR"]."\r\n"; //Sender's IP $msg .= "Navigateur : ".$_SERVER["HTTP_USER_AGENT"]."\r\n"; //User agent $msg .= "Page : ".$_SERVER["HTTP_REFERER"]; //Referrer // END Extras if (mail($to, $subject, $msg, "From: $email\r\nReply-To: $email\r\nReturn-Path: $email\r\n")){ echo '