fix(notification): update storage email link in S3 error (#8633)
This commit is contained in:
parent
05ebba9f1a
commit
30da9e96eb
1 changed files with 1 additions and 1 deletions
|
|
@ -198,7 +198,7 @@ public function testConnection(bool $shouldSave = false)
|
|||
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) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue