Merhaba Önceden Kullanmakta Oldugum PHPMAİLER şuan ne yaparsam yapayım time out veriyor Ben mi hata yapıyorum yoksa class da mı hata var

Kullandıgım Kod
<?php
use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\SMTP;
use PHPMailer\PHPMailer\Exception;

// Load Composer's autoloader

require("vendor/autoload.php");

$smtprun = new PHPMailer(true);
$smtprun->IsSMTP();
$smtprun->SMTPAuth = true;
$smtprun->Host = 'mail.linkgec.com';
$smtprun->Port = '465';
$smtprun->SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS;
$smtprun->Username = 'admin@linkgec.com';
$smtprun->IsHTML(true);
$smtprun->Password = 'şifrem';
$smtprun->SetFrom($smtprun->Username, 'test');
$smtprun->addAddress('joe@example.net', 'Joe User');
$smtprun->CharSet = 'UTF-8';
$smtprun->Subject = 'test';

$smtprun->MsgHTML('sa');
if($smtprun->Send()) {
echo '1';

} else {
echo '0';
    }

https://github.com/PHPMailer/PHPMailer