33 lines
1.4 KiB
PHP
33 lines
1.4 KiB
PHP
<?php
|
|
/**
|
|
* The mail file of testtesttask module of ZenTaoPMS.
|
|
*
|
|
* @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
|
|
* @license ZPL (http://zpl.pub/page/zplv12.html)
|
|
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
|
|
* @package bug
|
|
* @version $Id: sendmail.html.php 3717 2012-12-10 00:37:07Z zhujinyonging@gmail.com $
|
|
* @link http://www.zentao.net
|
|
*/
|
|
?>
|
|
<?php $mailTitle = 'TESTTASK #' . $testtask->id . ' ' . $testtask->name;?>
|
|
<?php include '../../common/view/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 html::a(common::getSysURL() . $this->createLink('testtask', 'view', "testtaskID=$testtask->id"), $mailTitle, '', "style='color: #333; text-decoration: none;'");?></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->testtask->desc;?></legend>
|
|
<div style='padding:5px;'><?php echo $testtask->desc;?></div>
|
|
</fieldset>
|
|
</td>
|
|
</tr>
|
|
<?php include '../../common/view/mail.footer.html.php';?>
|