From 52d9727d706ab86f77c885dfb1b208617510cee3 Mon Sep 17 00:00:00 2001 From: deepshekhardas Date: Wed, 11 Mar 2026 06:26:22 +0530 Subject: [PATCH] fix: update email link in S3 connection error notification --- app/Models/S3Storage.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/Models/S3Storage.php b/app/Models/S3Storage.php index 3aae55966..3eebc87f2 100644 --- a/app/Models/S3Storage.php +++ b/app/Models/S3Storage.php @@ -129,8 +129,7 @@ class S3Storage extends BaseModel if ($this->unusable_email_sent === false && is_transactional_emails_enabled()) { $mail = new MailMessage; $mail->subject('Coolify: S3 Storage Connection Error'); - $mail->view('emails.s3-connection-error', ['name' => $this->name, 'reason' => $e->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) { $query->withPivot('role');