-
Üyelik
09.11.2013
-
Yaş/Cinsiyet
29 / E
-
Meslek
Öğrenci
-
Konum
Iğdır
-
Ad Soyad
Y** K**
-
Mesajlar
920
-
Beğeniler
601 / 130
-
Ticaret
22, (%100)
sunucum phpmail'i devredışı bıraktığı için bana smtp maili önerdi fakat alttaki kodu nasıl smtp mail'e dönüştürebilirim ?
$ad_soyad = $_POST["ad_soyad"];
$tel = $_POST["tel"];
$email = $_POST["email"];
$mesaj = $_POST["mesaj"];
$adres = "mail@adresim.com"; // Buraya e-postanin gonderilecegi mail adresini yaziniz
$konu = "iletisim formu";
$tarih = date('Y-m-d');
$ip_adresi = $_SERVER['REMOTE_ADDR'];
if(($ad_soyad=="") or ($tel =="") or ($email=="") or ($mesaj=="")){
header("Location: mesajgonderilmedi.html");
}
else
{
$mesajveri.="Ad-Soyad: ".$ad_soyad."
";
$mesajveri.="E-Mail: ".$email."
";
$mesajveri.="Telefon: ".$tel."
";
$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: mesajgonderildi.html");
}
else
{
echo "E-Mail gonderilirken hata olustu! Lutfen daha sonra tekrar deneyiniz.";
}
}
?>