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;