Skip to content

Commit

Permalink
1717: introduce space between texts
Browse files Browse the repository at this point in the history
  • Loading branch information
sinejespersen committed Jun 25, 2024
1 parent 7492cdd commit e1e0e6a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions app/Domain/Notifications/Services/Notifications.php
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,7 @@ public function processMentions(string $content, string $module, int $moduleId,
$subject = sprintf($this->language->__('text.x_mentioned_you'), $authorName);
$mailer->setSubject($subject);

$emailMessage = $subject;
$emailMessage .= sprintf($this->language->__('text.click_here'), $url);
$emailMessage = $subject . " " . sprintf($this->language->__('text.click_here'), $url);
$mailer->setHtml($emailMessage);

$taggedUserObject = $this->userRepository->getUser($taggedUser);
Expand Down

0 comments on commit e1e0e6a

Please sign in to comment.