diff options
| author | Thomas Hackl <hackl@data-quest.de> | 2024-08-07 14:36:08 +0000 |
|---|---|---|
| committer | Thomas Hackl <hackl@data-quest.de> | 2024-08-07 14:36:08 +0000 |
| commit | 7e7df1514c052f1e49e9db9686787d4f6f0005e4 (patch) | |
| tree | 9a541846525ba256bf34a9bbb461f2e5bc056926 /lib/messaging.inc.php | |
| parent | c91fbd09075348c9b7b08900b7dbe7056eb75a63 (diff) | |
Resolve "Nutzername im FROM-Mail-Header führt zu Spam-Einstufung"
Closes #4464
Merge request studip/studip!3251
Diffstat (limited to 'lib/messaging.inc.php')
| -rw-r--r-- | lib/messaging.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/messaging.inc.php b/lib/messaging.inc.php index 8df15ba..bb1990b 100644 --- a/lib/messaging.inc.php +++ b/lib/messaging.inc.php @@ -183,7 +183,7 @@ class messaging if ($snd_user_id != "____%system%____") { $sender = User::find($snd_user_id); - $snd_fullname = $sender->getFullName() . ' (' . $sender->username . ')'; + $snd_fullname = $sender->getFullName(); $reply_to = $sender->Email; } $attachments = []; |
