try {
$eposta = new PHPMailer();
$eposta-> SMTPDebug = 3;
$eposta -> isSMTP();
$eposta -> Host = "mail.traveltomarmaris.com";
$eposta -> SMTPAuth = true;
$eposta -> Username = "***@traveltomarmaris.com";
$eposta -> Password = "****";
$eposta -> SMTPSecure = "tls";
$eposta -> Port = 587;
$eposta -> From = "***@traveltomarmaris.com";
$eposta -> FromName = "Rezervasyon Bilgileri";// Veri tabanından dil ayarına göre çekilecek7
$eposta -> addAddress(post('e-mail'));
$eposta -> isHTML(true);
$eposta -> Subject = $tur['turBaslik'];
$eposta -> Body = post('date_from') . 'tariihinde rezervasyon yapıldı.';
$eposta -> CharSet = 'UTF-8';
if (!$eposta ->send()) {
echo $eposta->ErrorInfo;
}
} catch (\Exception $e) {
echo $e->getMessage();
}


SMTP Connect() hatası veriyor şimdi de hosting aldığım firmaya yazdım bakalım ne cevap dönecek