From 2a2fe4bae448556ca9b8f863325c4dbd06c07a38 Mon Sep 17 00:00:00 2001 From: Peter Alexandre Date: Mon, 3 Aug 2026 23:09:34 +0200 Subject: [PATCH] fix: use noreply@ as From address for forum and group notifications --- src/Command/SendNotificationsCommand.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Command/SendNotificationsCommand.php b/src/Command/SendNotificationsCommand.php index 7fecae0491..021d25992c 100644 --- a/src/Command/SendNotificationsCommand.php +++ b/src/Command/SendNotificationsCommand.php @@ -123,9 +123,9 @@ private function determineSender(ForumPost $post): Address { $thread = $post->getThread(); if ($thread->getGroup()) { - $from = new Address('group@bewelcome.org', 'BeWelcome - ' . $post->getAuthor()->getUsername()); + $from = new Address('noreply@bewelcome.org', 'BeWelcome - ' . $post->getAuthor()->getUsername()); } else { - $from = new Address('forum@bewelcome.org', 'BeWelcome - ' . $post->getAuthor()->getUsername()); + $from = new Address('noreply@bewelcome.org', 'BeWelcome - ' . $post->getAuthor()->getUsername()); } return $from;