Files
ExpenseCount/app/View/Emails/html/export_receipt_email.ctp
2026-06-25 13:03:45 +06:00

35 lines
623 B
PHP

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>ExpenseCount - <?php echo __("LBL_WEBSITE_TITLE");?></title>
<meta name="description" content="Download your requested file from ExpenseCount." />
</head>
<body>
<p>Hello,</p>
<p>Great news! Your requested file is now ready for download.</p>
<p>
You can download it using the link below:
</p>
<p>
<a href="<?php echo $data['download_url']; ?>" target="_blank">Download File</a>
</p>
<br/>
<p>
Please note: This link may expire at <?php echo $data['expire_time']; ?>.
</p>
<br/>
Thanks,<br/>
ExpenseCount Team<br/>
</body>
</html>