diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2019-01-13 20:47:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-13 20:47:01 +0100 |
commit | 71e26d12c0f82ebf4046a9265e2594b469be9e7b (patch) | |
tree | 338378848d598f95aac27263cbe30ef4e49dfed5 | |
parent | 8440e5edba07d643352775b7c02bd4c89c72526a (diff) | |
parent | 53ce4a049b49f00dcc4dd9253cebaed5746fc4e0 (diff) | |
download | nextcloud-server-71e26d12c0f82ebf4046a9265e2594b469be9e7b.tar.gz nextcloud-server-71e26d12c0f82ebf4046a9265e2594b469be9e7b.zip |
Merge pull request #12490 from nextcloud/improve-mail-subject
improve mail subject for mails to the owner with the password
-rw-r--r-- | apps/sharebymail/lib/ShareByMailProvider.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/sharebymail/lib/ShareByMailProvider.php b/apps/sharebymail/lib/ShareByMailProvider.php index c74c5eb1a7f..e255adfd3f6 100644 --- a/apps/sharebymail/lib/ShareByMailProvider.php +++ b/apps/sharebymail/lib/ShareByMailProvider.php @@ -599,7 +599,7 @@ class ShareByMailProvider implements IShareProvider { 'shareWith' => $shareWith, ]); - $emailTemplate->setSubject($this->l->t('Password to access »%1$s« shared with %2$s', [$filename, $shareWith])); + $emailTemplate->setSubject($this->l->t('Password to access »%1$s« shared by you with %2$s', [$filename, $shareWith])); $emailTemplate->addHeader(); $emailTemplate->addHeading($this->l->t('Password to access »%s«', [$filename]), false); $emailTemplate->addBodyText($bodyPart); |