Hosting smtp destekliyor, sitemin iletişim formundan gönderilen
mesajlar mail'e gelmiyor.
Mesajların gelmesi gereken e-posta: ahmeth00@gmail.com
Konfigürasyon:
include 'class.phpmailer.php';
$mail = new PHPMailer();
$mail->IsSMTP();
$mail->SMTPAuth = true;
$mail->Host = 'smtp.gmail.com';
$mail->Port = 465;
$mail->SMTPSecure = 'SSL';
$mail->Username = 'ahmeth00@gmail.com';
$mail->Password = '********';
$mail->SetFrom('$gonderen_mail', '$gonderen_ad');
$mail->AddAddress('ahmeth00@gmail.com', 'Ahmet H.');
$mail->CharSet = 'UTF-8';
$mail->Subject = 'E-POSTA KONUSU';
$content = 'E-POSTA İCERİK';
$mail->MsgHTML($content);
}
if($mail->Send()) {
Header("Location:../iletisim/ok/");
} else {
Header("Location:../iletisim/hata/");
}
Her ne ayarlarsam ayarlayayım, /iletisim/hata sayfasına yönleniyor.