Fix PHPMailer autoload path

- Korrigiert den Autoload-Pfad fuer PHPMailer im vendor/autoload.php
This commit is contained in:
2026-02-13 19:57:08 +01:00
parent c79eb55e24
commit a17c54b8fc

2
vendor/autoload.php vendored
View File

@@ -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;