m.sendmail.html.php 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?php
  2. /**
  3. * The mail file of overtime module of ZDOO.
  4. *
  5. * @copyright Copyright 2009-2016 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
  6. * @license ZPL (http://zpl.pub/page/zplv12.html)
  7. * @author Tingting Dai <daitingting@xirangit.com>
  8. * @package overtime
  9. * @version $Id
  10. * @link http://www.zdoo.com
  11. */
  12. ?>
  13. <?php $mailTitle = "{$lang->overtime->common}#{$overtime->id} " . zget($users, $overtime->createdBy) . " {$overtime->begin}~{$overtime->end}";?>
  14. <?php include $app->getModuleRoot() . 'common/view/m.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->overtime->common;?></legend>
  30. <div style='padding:5px;'>
  31. <p><?php echo $lang->overtime->createdBy . ':' . zget($users, $overtime->createdBy)?></p>
  32. <p><?php echo $lang->overtime->status . ':' . zget($lang->overtime->statusList, $overtime->status)?></p>
  33. <p><?php echo $lang->overtime->type . ':' . zget($lang->overtime->typeList, $overtime->type)?></p>
  34. <p><?php echo "{$lang->overtime->date}: {$overtime->begin} {$overtime->start}~{$overtime->end} {$overtime->finish}"?></p>
  35. <p><?php echo $lang->overtime->desc?></p>
  36. <p><?php echo $overtime->desc?></p>
  37. </div>
  38. </fieldset>
  39. </td>
  40. </tr>
  41. <?php include $app->getModuleRoot() . 'common/view/m.mail.footer.html.php';?>