You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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());