PHPMailer\PHPMailer

PHPMailer::smtpClose()publicWP 1.0

Close the active SMTP session if one exists.

Метод класса: PHPMailer{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$PHPMailer = new PHPMailer();
$PHPMailer->smtpClose();

Код PHPMailer::smtpClose() WP 6.6.2

public function smtpClose()
{
    if ((null !== $this->smtp) && $this->smtp->connected()) {
        $this->smtp->quit();
        $this->smtp->close();
    }
}