diff --git a/lib/Service/SendMailService.php b/lib/Service/SendMailService.php index 0662578f6..2a94835cc 100644 --- a/lib/Service/SendMailService.php +++ b/lib/Service/SendMailService.php @@ -158,12 +158,12 @@ private function generateMailExitingShares( $emailTemplate->addHeader(); if ($multiple) { - $text = $this->l10n->t('%s shared multiple files with "%s".', [$author, $circleName]); + $text = $this->l10n->t('%s shared multiple files with you via a team.', [$author]); } else { - $text = $this->l10n->t('%s shared a file with "%s".', [$author, $circleName]); + $text = $this->l10n->t('%s shared a file with you via a team.', [$author]); } - $text = $this->l10n->t('%s shared multiple files with "%s".', [$author, $circleName]); + $text = $this->l10n->t('%s shared multiple files with you via a team.', [$author]); $emailTemplate->addBodyText(htmlspecialchars($text), $text); return $emailTemplate;