Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Command/SendNotificationsCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
5 changes: 3 additions & 2 deletions src/Service/Mailer.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,9 @@
class Mailer
{
private const NO_REPLY_EMAIL_ADDRESS = 'noreply@bewelcome.org';
private const MESSAGE_EMAIL_ADDRESS = 'message@bewelcome.org';
private const GROUP_EMAIL_ADDRESS = 'group@bewelcome.org';
private const MESSAGE_EMAIL_ADDRESS = 'noreply@bewelcome.org';
private const GROUP_EMAIL_ADDRESS = 'noreply@bewelcome.org';
private const FORUM_EMAIL_ADDRESS = 'noreply@bewelcome.org';
private const PASSWORD_EMAIL_ADDRESS = 'password@bewelcome.org';
private const SIGNUP_EMAIL_ADDRESS = 'signup@bewelcome.org';
private const ACCOUNT_FEEDBACK_ADDRESS = 'account@bewelcome.org';
Expand Down
Loading