您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

altmail.php 496B

12345678910111213
  1. <?php
  2. print_unescaped($l->t("Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n", array($_['user_displayname'], $_['filename'], $_['link'])));
  3. if ( isset($_['expiration']) ) {
  4. print_unescaped($l->t("The share will expire on %s.", array($_['expiration'])));
  5. print_unescaped("\n\n");
  6. }
  7. // TRANSLATORS term at the end of a mail
  8. p($l->t("Cheers!"));
  9. ?>
  10. --
  11. <?php p($theme->getName() . ' - ' . $theme->getSlogan()); ?>
  12. <?php print_unescaped("\n".$theme->getBaseUrl());