2013-06-14 19:38:56 +04:00
< ? php
2013-09-30 12:02:26 +04:00
print_unescaped ( $l -> t ( " Hey there, \n \n just letting you know that %s shared %s with you. \n View it: %s \n \n " , array ( $_ [ 'user_displayname' ], $_ [ 'filename' ], $_ [ 'link' ])));
if ( isset ( $_ [ 'expiration' ]) ) {
2013-11-21 12:58:35 +04:00
print_unescaped ( $l -> t ( " The share will expire on %s. " , array ( $_ [ 'expiration' ])));
2014-09-04 13:30:54 +04:00
print_unescaped ( " \n \n " );
2013-09-30 12:02:26 +04:00
}
2014-08-20 17:14:07 +04:00
// TRANSLATORS term at the end of a mail
2013-09-30 12:02:26 +04:00
p ( $l -> t ( " Cheers! " ));
2013-06-14 19:38:56 +04:00
?>
--
2013-09-30 12:02:26 +04:00
< ? php p ( $theme -> getName () . ' - ' . $theme -> getSlogan ()); ?>
< ? php print_unescaped ( " \n " . $theme -> getBaseUrl ());