3
0
mirror of https://github.com/snipe/snipe-it.git synced 2026-02-04 19:35:39 +00:00

Use generic email address domains

This commit is contained in:
snipe
2025-12-05 17:03:02 +00:00
parent d20545741e
commit da5db1920e

View File

@ -19,7 +19,7 @@ class Settings
return new self();
}
public function enableAlertEmail(string $email = 'notifications@afcrichmond.com'): Settings
public function enableAlertEmail(string $email = 'notifications@example.org'): Settings
{
return $this->update([
'alert_email' => $email,
@ -46,7 +46,7 @@ class Settings
]);
}
public function enableAdminCC(string $email = 'cc@example.co'): Settings
public function enableAdminCC(string $email = 'cc@example.org'): Settings
{
return $this->update([
'admin_cc_email' => $email,