From a17c54b8fc2176f7ed72457040c1695e962bcc01 Mon Sep 17 00:00:00 2001 From: webfarben Date: Fri, 13 Feb 2026 19:57:08 +0100 Subject: [PATCH] Fix PHPMailer autoload path - Korrigiert den Autoload-Pfad fuer PHPMailer im vendor/autoload.php --- vendor/autoload.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendor/autoload.php b/vendor/autoload.php index de74b55..3d06895 100644 --- a/vendor/autoload.php +++ b/vendor/autoload.php @@ -9,7 +9,7 @@ spl_autoload_register(function ($class) { if (strpos($class, 'PHPMailer\\PHPMailer\\') === 0) { // Namespace in Dateipfad umwandeln $classPath = str_replace('PHPMailer\\PHPMailer\\', '', $class); - $file = __DIR__ . '/vendor/phpmailer/phpmailer/src/' . $classPath . '.php'; + $file = __DIR__ . '/phpmailer/phpmailer/src/' . $classPath . '.php'; if (file_exists($file)) { require $file;