Böyle denyeyin hocam iften sonrası için



if (isset($_POST["ad_soyad"]) && !empty($_POST["ad_soyad"])) {

$cinsiyet = $_POST["cinsiyet"];
$ad_soyad = $_POST["ad_soyad"];
$e_posta = $_POST["e_posta"];
$telefon = $_POST["telefon"];
$yorum = $_POST["yorum"];
$tarih = date('j ') . $ay . date(' Y ') . $gun . date(' H:i:s');
$durum = "0";

$sorgu = $db->prepare("INSERT INTO musteri_yorumlari SET cinsiyet=:cinsiyet, ad_soyad=:ad_soyad, e_posta=:e_posta, telefon=:telefon, yorum=:yorum, tarih=:tarih, durum=:durum");

$sorgu->execute(array(
':cinsiyet'=>$cinsiyet,
':ad_soyad'=>$ad_soyad,
':e_posta'=>$e_posta,
':telefon'=>$telefon,
':yorum'=>$yorum,
':tarih'=>$tarih,
':durum'=>$durum));

// MAİL GÖNDERİMİ BURADA BAŞLIYOR.
require_once("class.phpmailer.php");

$mail = new PHPMailer();
$mail->IsSMTP();
$mail->IsHTML(true);
$mail->SetLanguage("tr", "phpmailer/language");
$mail->CharSet ="utf-8";
$mail->SMTPAuth = true;
$mail->Host = "".$ayar["mail_host"]."";
$mail->Username = "".$ayar["mail_kadi"]."";
$mail->Password = "".$ayar["mail_sifre"]."";
$mail->From = "".$_POST["e_posta"]."";
$mail->Fromname = "isimmm";
$mail->AddAddress("".$ayar["mail_musteri_yorumlari"]."", "".$ayar["seo_title"]."");
$mail->Subject = " Müşteri Yorumu " . " - ".$_POST["ad_soyad"]." ";
$mail->Body ="
". $_POST["ad_soyad"] ." | ". $_POST["e_posta"] ." | ". $_POST["telefon"] ."

Müşteri Yorumu

". $_POST["yorum"] ." ";

if(!$mail->Send())
{
header("Location:../");
// echo 'Gönderim Hatası: ' . $mail->ErrorInfo . '';
print '<script>alert("BEKLENMEDİK BİR HATA OLUŞTU.");</script>';
exit;
}

header("Location:../");
// echo 'Mesaj başarıyla gönderildi.';
print '<script>alert("Değerli Yorumunuz için Teşekkür Ederiz :)");</script>';
// MAİL GÖNDERİMİ BURADA BİTİYOR.


}

?>