diff --git a/src/Command/SendNotificationsCommand.php b/src/Command/SendNotificationsCommand.php index 7fecae049..021d25992 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;