103 |
- |
1 |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
|
2 |
<?php echo $this->getViewContent('email/emailhead'); ?>
|
|
|
3 |
<body>
|
|
|
4 |
<?php echo $commonTexts['Hello']?> <?php echo $name?>,<br><br>
|
|
|
5 |
|
|
|
6 |
<?php echo $reportTexts['report_email_body_text1']?><br><br><br><br>
|
|
|
7 |
|
|
|
8 |
<?php echo $reportContent; ?>
|
|
|
9 |
|
|
|
10 |
<br><br><br><br>
|
|
|
11 |
<?php
|
|
|
12 |
$custSiteInfo = getCustomizerDetails();
|
|
|
13 |
$reportLink = SP_WEBPATH."/admin-panel.php?menu_selected=report-manager&start_script=archive&website_id=0";
|
|
|
14 |
echo str_replace('[LOGIN_LINK]', "<a href='$reportLink'>{$loginTexts['Login']}</a>", $reportTexts['report_email_body_text2']);
|
|
|
15 |
?>
|
|
|
16 |
<br><br>
|
|
|
17 |
<table cellspacing="0" cellpadding="0" width="100%">
|
|
|
18 |
<tbody>
|
|
|
19 |
<tr style="height: 11px;">
|
|
|
20 |
<td style="vertical-align: middle; margin: 0pt;" colspan="2">
|
|
|
21 |
<hr
|
|
|
22 |
style="margin: 5px 0pt; background-color: rgb(0, 0, 0); color: rgb(0, 0, 0); height: 1px;">
|
|
|
23 |
</td>
|
|
|
24 |
</tr>
|
|
|
25 |
<tr style="height: 20px;">
|
|
|
26 |
<td style="vertical-align: middle; font-size: 11px; padding: 5px; margin: 0pt;">
|
|
|
27 |
<?php if (!empty($custSiteInfo['footer_copyright'])) {?>
|
|
|
28 |
<div style="word-wrap: break-word;"><?php echo str_replace('[year]', date('Y'), $custSiteInfo['footer_copyright'])?></div>
|
|
|
29 |
<?php } else {?>
|
|
|
30 |
<div style="word-wrap: break-word;">
|
|
|
31 |
<p style="font-size: 11px; color: rgb(169, 169, 169);"><?php echo str_replace('[year]', date('Y'), $spText['common']['copyright']); ?></p>
|
|
|
32 |
</div>
|
|
|
33 |
<?php }?>
|
|
|
34 |
</td>
|
|
|
35 |
</tr>
|
|
|
36 |
</tbody>
|
|
|
37 |
</table>
|
|
|
38 |
</body>
|
|
|
39 |
</html>
|