From 58528262b4bdcd23b06afe35b05e004a712b929a Mon Sep 17 00:00:00 2001 From: Jon Stovell Date: Sun, 22 Feb 2026 17:34:34 -0700 Subject: [PATCH] Adds a missing `$this->` in SMF\MailAgent\APIs\STMP::connect() Signed-off-by: Jon Stovell --- Sources/MailAgent/APIs/SMTP.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/MailAgent/APIs/SMTP.php b/Sources/MailAgent/APIs/SMTP.php index 0b8488918a..64077cd1a8 100644 --- a/Sources/MailAgent/APIs/SMTP.php +++ b/Sources/MailAgent/APIs/SMTP.php @@ -112,7 +112,7 @@ public function connect(): bool return false; } - $helo = getHostname(); + $helo = $this->getHostname(); if (Config::$modSettings['smtp_username'] != '' && Config::$modSettings['smtp_password'] != '') { // EHLO could be understood to mean encrypted hello...