From 88e7957cc479d89bf896df6861743205957890f2 Mon Sep 17 00:00:00 2001 From: "Amiel Elboim (Matrix)" Date: Sun, 9 Dec 2018 21:21:16 +0200 Subject: [PATCH] add missing 'use' statement (#2031) --- library/classes/postmaster.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/library/classes/postmaster.php b/library/classes/postmaster.php index 3a9ed5d69..2ff63a98e 100644 --- a/library/classes/postmaster.php +++ b/library/classes/postmaster.php @@ -10,6 +10,8 @@ // if ($SMTP_Auth=="No") { $connection = true; } // Also, remove "25" in line 185 and change $Port to $this->Port on line 612 so that it can read Admin's setting +use PHPMailer\PHPMailer\PHPMailer; + class MyMailer extends PHPMailer { var $Mailer; -- 2.11.4.GIT