mirror of
https://github.com/friendica/friendica
synced 2025-04-24 04:30:11 +00:00
Centralize config.admin_email management in Model\User
This commit is contained in:
parent
cbe8d463b1
commit
fe547b7851
11 changed files with 134 additions and 134 deletions
|
@ -85,14 +85,8 @@ class RemoveMe extends BaseSettings
|
|||
}
|
||||
|
||||
// send notification to admins so that they can clean up the backups
|
||||
$admin_mails = explode(',', $this->config->get('config', 'admin_email'));
|
||||
foreach ($admin_mails as $mail) {
|
||||
$admin = $this->database->selectFirst('user', ['uid', 'language', 'email', 'username'], ['email' => trim($mail)]);
|
||||
if (!$admin) {
|
||||
continue;
|
||||
}
|
||||
|
||||
$l10n = $this->l10n->withLang($admin['language']);
|
||||
foreach (User::getAdminListForEmailing(['uid', 'language', 'email']) as $admin) {
|
||||
$l10n = $this->l10n->withLang($admin['language'] ?: 'en');
|
||||
|
||||
$email = $this->emailer
|
||||
->newSystemMail()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue