coollabsio/coolify · error · Exception

Too many messages sent!

Error message

Too many messages sent!

What it means

Error "Too many messages sent!" thrown in coollabsio/coolify.

Source

Thrown at app/Livewire/SettingsEmail.php:253

            $this->validate([
                'testEmailAddress' => 'required|email',
            ], [
                'testEmailAddress.required' => 'Test email address is required.',
                'testEmailAddress.email' => 'Please enter a valid email address.',
            ]);

            $executed = RateLimiter::attempt(
                'test-email:'.$this->team->id,
                $perMinute = 0,
                function () {
                    $this->team?->notifyNow(new Test($this->testEmailAddress));
                    $this->dispatch('success', 'Test Email sent.');
                },
                $decaySeconds = 10,
            );

            if (! $executed) {
                throw new \Exception('Too many messages sent!');
            }
        } catch (\Throwable $e) {
            return handleError($e, $this);
        }
    }
}

View on GitHub (pinned to 70b9acc424)

When it happens

Trigger: Thrown at app/Livewire/SettingsEmail.php:253 when the library encounters an invalid state.

Common situations: See trigger scenarios.


AI-assisted analysis of coollabsio/coolify@70b9acc424 (2026-08-17). Data as JSON: /api/errors/9520367442244fa1. Report an issue: GitHub.