Blame view
sources/core/templates/mail.php
1.35 KB
|
31b7f2792
|
1 2 3 4 |
<table cellspacing="0" cellpadding="0" border="0" width="100%"> <tr><td> <table cellspacing="0" cellpadding="0" border="0" width="600px"> <tr> |
|
837968727
|
5 6 7 |
<td bgcolor="<?php p($theme->getMailHeaderColor());?>" width="20px"> </td>
<td bgcolor="<?php p($theme->getMailHeaderColor());?>">
<img src="<?php p(OC_Helper::makeURLAbsolute(image_path('', 'logo-mail.gif'))); ?>" alt="<?php p($theme->getName()); ?>"/>
|
|
31b7f2792
|
8 9 |
</td> </tr> |
|
837968727
|
10 |
<tr><td colspan="2"> </td></tr> |
|
31b7f2792
|
11 |
<tr> |
|
837968727
|
12 13 |
<td width="20px"> </td> <td style="font-weight:normal; font-size:0.8em; line-height:1.2em; font-family:verdana,'arial',sans;"> |
|
31b7f2792
|
14 |
<?php |
|
6d9380f96
|
15 |
print_unescaped($l->t('Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href="%s">View it!</a><br><br>', array($_['user_displayname'], $_['filename'], $_['link'])));
|
|
31b7f2792
|
16 17 18 19 20 21 22 23 |
if ( isset($_['expiration']) ) {
p($l->t("The share will expire on %s.", array($_['expiration'])));
print_unescaped('<br><br>');
}
p($l->t('Cheers!'));
?>
</td>
</tr>
|
|
837968727
|
24 |
<tr><td colspan="2"> </td></tr> |
|
31b7f2792
|
25 |
<tr> |
|
837968727
|
26 27 |
<td width="20px"> </td> <td style="font-weight:normal; font-size:0.8em; line-height:1.2em; font-family:verdana,'arial',sans;">--<br> |
|
31b7f2792
|
28 29 |
<?php p($theme->getName()); ?> - <?php p($theme->getSlogan()); ?> |
|
837968727
|
30 |
<br><a href="<?php p($theme->getBaseUrl()); ?>"><?php p($theme->getBaseUrl());?></a> |
|
31b7f2792
|
31 32 33 |
</td> </tr> <tr> |
|
837968727
|
34 |
<td colspan="2"> </td> |
|
31b7f2792
|
35 36 37 38 |
</tr> </table> </td></tr> </table> |