Fix: system_notify_email Accessor statt nicht-existenter notifyEmail()

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
main v1.1.370
boban 2026-04-26 23:41:37 +02:00
parent cdfdcc0756
commit 6bb2d09621
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@ class SettingsForm extends Component
$this->loadSslStatus();
$defaultSenderName = ($this->instance_name ?: 'Mailwolt') . ' Benachrichtigung';
$defaultAdminEmail = auth()->user()?->notifyEmail() ?? '';
$defaultAdminEmail = auth()->user()?->system_notify_email ?? '';
$this->notify_sender_name = (string) Setting::get('notify_sender_name', $defaultSenderName);
$this->notify_admin_email = (string) Setting::get('notify_admin_email', $defaultAdminEmail);
$this->rate_limit = (int) Setting::get('rate_limit', $this->rate_limit);