sendmail.html.php 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. /**
  3. * The mail file of customer module of RanZhi.
  4. *
  5. * @copyright Copyright 2009-2018 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
  6. * @license ZPL (http://zpl.pub/page/zplv12.html)
  7. * @author Chu Jilu <chujilu@cnezsoft.com>
  8. * @package customer
  9. * @version $Id: sendmail.html.php 867 2010-06-17 09:32:58Z yuren_@126.com $
  10. * @link http://www.ranzhi.org
  11. */
  12. ?>
  13. <?php $mailTitle = "{$lang->attend->common} - $label#" . zget($users, $attend->account) . ' ' . formatTime($attend->date, DT_DATE1);?>
  14. <?php include $app->getModuleRoot() . 'common/view/mail.header.html.php';?>
  15. <tr>
  16. <td>
  17. <table cellpadding='0' cellspacing='0' width='600' style='border: none; border-collapse: collapse;'>
  18. <tr>
  19. <td style='padding: 10px; background-color: #F8FAFE; border: none; font-size: 14px; font-weight: 500; border-bottom: 1px solid #e5e5e5;'>
  20. <?php echo $mailTitle;?>
  21. </td>
  22. </tr>
  23. </table>
  24. </td>
  25. </tr>
  26. <tr>
  27. <td style='padding: 10px; border: none;'>
  28. <fieldset style='border: 1px solid #e5e5e5'>
  29. <legend style='color: #114f8e'><?php echo $lang->attend->common;?></legend>
  30. <div style='padding:5px;'>
  31. <p><?php echo $lang->attend->status . ':' . zget($lang->attend->statusList, $attend->status)?></p>
  32. <p><?php echo $lang->attend->date . ':' . formatTime($attend->date, DT_DATE1);?></p>
  33. <p><?php echo $lang->attend->reason . ':' . zget($lang->attend->reasonList, $attend->reason)?></p>
  34. <p><?php echo $lang->attend->desc?></p>
  35. <p><?php echo $attend->desc?></p>
  36. </div>
  37. </fieldset>
  38. </td>
  39. </tr>
  40. <?php include $app->getModuleRoot() . 'common/view/mail.footer.html.php';?>