scriptin içinde var zaten kimden geldiği yazıyor arkadaşım..

//The message you will receive in your mailbox
//Each parts are commented to help you understand what it does exaclty.
//YOU DON'T NEED TO EDIT IT BELOW BUT IF YOU DO, DO IT WITH CAUTION!
$msg  = "Gönderen : $name \r\n";  //add sender's name to the message
$msg .= "e-Mail : $email \r\n";  //add sender's email to the message
$msg .= "Website : $website \r\n"; //add sender's website to the message
$msg .= "Konu : $subject \r\n\n"; //add subject to the message (optional! It will be displayed in the header anyway)
$msg .= "---Mesaj--- \r\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 .= "---User information--- \r\n"; //Title
$msg .= "IP NUMARASI: ".$_SERVER["REMOTE_ADDR"]."\r\n"; //Sender's IP
$msg .= "TARAYICI BILGISI : ".$_SERVER["HTTP_USER_AGENT"]."\r\n"; //User agent
$msg .= "Siteye nerden geldi : ".$_SERVER["HTTP_REFERER"]; //Referrer
// END Extras