fix(notification): update storage email link in S3 error (#8633)

This commit is contained in:
NrwPlay
2026-08-18 11:38:01 +02:00
committed by GitHub
parent 05ebba9f1a
commit 30da9e96eb
+1 -1
View File
@@ -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) {