0
0
Fork 0
mirror of https://github.com/nextcloud/server.git synced 2025-03-13 07:53:51 +00:00

Merge pull request from nextcloud/removeNoisyTextEmails

fix(shares): Remove noisy text from email
This commit is contained in:
Git'Fellow 2024-12-23 15:21:25 +01:00 committed by GitHub
commit 4b3b09f3c4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 0 additions and 32 deletions

View file

@ -352,10 +352,6 @@ class ShareByMailProvider extends DefaultShareProvider implements IShareProvider
);
}
$emailTemplate->addBodyText(
$this->l->t('Click the button below to open it.')
);
$emailTemplate->addBodyButton(
$this->l->t('Open %s', [$filename]),
$link

View file

@ -1289,10 +1289,6 @@ class ShareByMailProviderTest extends TestCase {
->expects($this->once())
->method('addHeading')
->with('Mrs. Owner User shared file.txt with you');
$template
->expects($this->once())
->method('addBodyText')
->with('Click the button below to open it.');
$template
->expects($this->once())
->method('addBodyButton')
@ -1399,10 +1395,6 @@ class ShareByMailProviderTest extends TestCase {
->expects($this->once())
->method('addHeading')
->with('Mrs. Owner User shared file.txt with you');
$template
->expects($this->once())
->method('addBodyText')
->with('Click the button below to open it.');
$this->urlGenerator->expects($this->once())->method('imagePath')
->with('core', 'caldav/description.png')
@ -1525,10 +1517,6 @@ class ShareByMailProviderTest extends TestCase {
->expects($this->once())
->method('addHeading')
->with('Mrs. Owner User shared file.txt with you');
$template
->expects($this->once())
->method('addBodyText')
->with('Click the button below to open it.');
$expiration = new DateTime('2001-01-01');
$this->l->expects($this->once())
@ -1657,10 +1645,6 @@ class ShareByMailProviderTest extends TestCase {
->expects($this->once())
->method('addHeading')
->with('Mr. Initiator User shared file.txt with you');
$template
->expects($this->once())
->method('addBodyText')
->with('Click the button below to open it.');
$template
->expects($this->once())
->method('addBodyButton')
@ -1758,10 +1742,6 @@ class ShareByMailProviderTest extends TestCase {
->expects($this->once())
->method('addHeading')
->with('Mrs. Owner User shared file.txt with you');
$template
->expects($this->once())
->method('addBodyText')
->with('Click the button below to open it.');
$template
->expects($this->once())
->method('addBodyButton')
@ -1863,10 +1843,6 @@ class ShareByMailProviderTest extends TestCase {
->expects($this->once())
->method('addHeading')
->with('Mr. Initiator User shared file.txt with you');
$template
->expects($this->once())
->method('addBodyText')
->with('Click the button below to open it.');
$template
->expects($this->once())
->method('addBodyButton')

View file

@ -1520,10 +1520,6 @@ class DefaultShareProvider implements IShareProviderWithNotification, IShareProv
$emailTemplate->addBodyText(htmlspecialchars($note), $note);
}
$emailTemplate->addBodyText(
$l->t('Click the button below to open it.')
);
$emailTemplate->addBodyButton(
$l->t('Open %s', [$filename]),
$link