diff options
author | Bjoern Schiessle <bjoern@schiessle.org> | 2016-10-26 11:04:00 +0200 |
---|---|---|
committer | Bjoern Schiessle <bjoern@schiessle.org> | 2016-11-01 19:54:40 +0100 |
commit | 31c8c38bd62af35c1578a8342b05580a9bd67466 (patch) | |
tree | 71e2eeb82c6b4ae716382c0b4cb744d2bff652df /apps/sharebymail/templates/altmail.php | |
parent | 7436e45c91e139f99b72235c8fd577901e1596db (diff) | |
download | nextcloud-server-31c8c38bd62af35c1578a8342b05580a9bd67466.tar.gz nextcloud-server-31c8c38bd62af35c1578a8342b05580a9bd67466.zip |
send mail for share-by-mail shares
Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
Diffstat (limited to 'apps/sharebymail/templates/altmail.php')
-rw-r--r-- | apps/sharebymail/templates/altmail.php | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/apps/sharebymail/templates/altmail.php b/apps/sharebymail/templates/altmail.php new file mode 100644 index 00000000000..02d262d7229 --- /dev/null +++ b/apps/sharebymail/templates/altmail.php @@ -0,0 +1,36 @@ +<?php +/** + * @copyright Copyright (c) 2016 Bjoern Schiessle <bjoern@schiessle.org> + * + * @license GNU AGPL version 3 or any later version + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * + */ + +/** @var OC_Theme $theme */ +/** @var array $_ */ +if ($_['onBehalfOf']) { + print_unescaped($l->t("Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n", [$_['owner'], $_['filename'], $_['initiator'], $_['link']])); +} else { + print_unescaped($l->t("Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n", [$_['owner'], $_['filename'], $_['link']])); +} +// TRANSLATORS term at the end of a mail +p($l->t("Cheers!")); +print_unescaped("\n"); +?> + +-- +<?php p($theme->getName() . ' - ' . $theme->getSlogan()); ?> +<?php print_unescaped("\n".$theme->getBaseUrl()); |