$ad_soyad = $_POST["ad_soyad"];
$tel = $_POST["tel"];
$mesaj = $_POST["mesaj"];
$email = $_POST["email"];
$adres = "mail@adresim.com"; // Buraya e-postanin gonderilecegi mail adresini yaziniz
$konu = "Iletisim Formu";
date_default_timezone_set("Europe/Istanbul");
$tarih = date('F Y h:i:s A');
$ip_adresi = $_SERVER['REMOTE_ADDR'];
if(($ad_soyad=="") or ($tel =="") or ($email =="") or ($mesaj=="")){
}
else
{
$mesajveri.="ILETISIM FORMU MESAJI
";
$mesajveri.="Isim Soyisim: ".$ad_soyad."
";
$mesajveri.="Telefon: ".$tel."
";
$mesajveri.="E-Mail: ".$email."
";
$mesajveri.="Mesaj: ".$mesaj."
";
$mesajveri.="Tarih: ".$tarih."
";
$mesajveri.="IP Adresi :".$ip_adresi."
";
$mesajyolla = mail($adres, $konu, $mesajveri, "Content-type: text/html; charset=utf-8\r\n");
if($mesajyolla)
{
header('Location: iletisimok.php');
}
else
{
}
}
?>
arkadaşlar uzun zamandır siteden mail almıyordum. Bir kontrol edeyim dedim bu şekilde hata aldım. sebebi nedir ? Warning: mail() has been disabled for security reasons in /home/sut/public_html/gonder.php on line 26
Not: daha önceden bu dosyalarla hiç oynamadım