zentaopms/extension/max/overtime/view/m.sendmail.html.php
2023-05-16 10:50:42 +08:00

42 lines
1.8 KiB
PHP

<?php
/**
* The mail file of overtime module of ZDOO.
*
* @copyright Copyright 2009-2016 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
* @license ZPL (http://zpl.pub/page/zplv12.html)
* @author Tingting Dai <daitingting@xirangit.com>
* @package overtime
* @version $Id
* @link http://www.zdoo.com
*/
?>
<?php $mailTitle = "{$lang->overtime->common}#{$overtime->id} " . zget($users, $overtime->createdBy) . " {$overtime->begin}~{$overtime->end}";?>
<?php include $app->getModuleRoot() . 'common/view/m.mail.header.html.php';?>
<tr>
<td>
<table cellpadding='0' cellspacing='0' width='600' style='border: none; border-collapse: collapse;'>
<tr>
<td style='padding: 10px; background-color: #F8FAFE; border: none; font-size: 14px; font-weight: 500; border-bottom: 1px solid #e5e5e5;'>
<?php echo $mailTitle;?>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td style='padding: 10px; border: none;'>
<fieldset style='border: 1px solid #e5e5e5'>
<legend style='color: #114f8e'><?php echo $lang->overtime->common;?></legend>
<div style='padding:5px;'>
<p><?php echo $lang->overtime->createdBy . ':' . zget($users, $overtime->createdBy)?></p>
<p><?php echo $lang->overtime->status . ':' . zget($lang->overtime->statusList, $overtime->status)?></p>
<p><?php echo $lang->overtime->type . ':' . zget($lang->overtime->typeList, $overtime->type)?></p>
<p><?php echo "{$lang->overtime->date}: {$overtime->begin} {$overtime->start}~{$overtime->end} {$overtime->finish}"?></p>
<p><?php echo $lang->overtime->desc?></p>
<p><?php echo $overtime->desc?></p>
</div>
</fieldset>
</td>
</tr>
<?php include $app->getModuleRoot() . 'common/view/m.mail.footer.html.php';?>