From 30da9e96eb05b89020d1da8b155207c7d9e5d4c3 Mon Sep 17 00:00:00 2001 From: NrwPlay Date: Tue, 18 Aug 2026 11:38:01 +0200 Subject: [PATCH] fix(notification): update storage email link in S3 error (#8633) --- app/Models/S3Storage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Models/S3Storage.php b/app/Models/S3Storage.php index e8e1788e3f..e4b1e2fd68 100644 --- a/app/Models/S3Storage.php +++ b/app/Models/S3Storage.php @@ -198,7 +198,7 @@ class S3Storage extends BaseModel try { $mail = new MailMessage; $mail->subject('Coolify: S3 Storage Connection Error'); - $mail->view('emails.s3-connection-error', ['name' => $this->name, 'reason' => $exception->getMessage(), 'url' => route('storage.show', ['storage_uuid' => $this->uuid])]); + $mail->view('emails.s3-connection-error', ['name' => $this->name, 'reason' => $e->getMessage(), 'url' => base_url().'/storages/'.$this->uuid]); // Load the team with its members and their roles explicitly $team = $this->team()->with(['members' => function ($query) {