Conflicts: module/bug/view/activate.html.php module/bug/view/assignto.html.php module/bug/view/confirmbug.html.php module/bug/view/edit.html.php module/bug/view/resolve.html.php module/build/view/create.html.php module/build/view/edit.html.php module/common/model.php module/common/view/header.lite.html.php module/file/view/edit.html.php module/my/view/bug.html.php module/product/view/browse.html.php module/product/view/close.html.php module/product/view/edit.html.php module/productplan/view/edit.html.php module/project/view/activate.html.php module/project/view/batchedit.html.php module/project/view/burn.html.php module/project/view/close.html.php module/project/view/edit.html.php module/project/view/putoff.html.php module/project/view/start.html.php module/project/view/story.html.php module/project/view/suspend.html.php module/project/view/taskheader.html.php module/release/view/edit.html.php module/search/view/buildform.html.php module/story/view/batchclose.html.php module/story/view/change.html.php module/task/control.php module/task/css/batchcreate.css module/task/view/activate.html.php module/task/view/assignto.html.php module/task/view/batchcreate.html.php module/task/view/cancel.html.php module/task/view/close.html.php module/task/view/create.html.php module/task/view/edit.html.php module/task/view/finish.html.php module/task/view/start.html.php module/testtask/view/close.html.php module/testtask/view/edit.html.php module/testtask/view/start.html.php www/theme/default/style.css
39 lines
1.2 KiB
PHP
Executable File
39 lines
1.2 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* The test view file of mail module of ZenTaoPMS.
|
|
*
|
|
* @copyright Copyright 2009-2013 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
|
|
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)
|
|
* @author Chunsheng Wang <wwccss@cnezsoft.com>
|
|
* @package mail
|
|
* @version $Id$
|
|
* @link http://www.zentao.net
|
|
*/
|
|
if(isset($error))
|
|
{
|
|
include '../../common/view/header.lite.html.php';
|
|
die("<br />" . nl2br(join('', $error)));
|
|
}
|
|
?>
|
|
|
|
<?php include '../../common/view/header.html.php';?>
|
|
<form method='post' target='resultWin'>
|
|
<table class='table-4' align='center'>
|
|
<caption>
|
|
<div class='f-left'> <?php echo $lang->mail->test;?></div>
|
|
<div class='text-right'><?php echo $lang->mail->sendmailTips;?></div>
|
|
</caption>
|
|
<tr>
|
|
<td class='text-center'>
|
|
<?php
|
|
echo html::select('to', $users, $app->user->account);
|
|
echo html::submitButton($lang->mail->test);
|
|
echo html::linkButton($lang->mail->edit, inLink('edit'));
|
|
?>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
<table class='table-4 bd-none' align='center'><tr><td><iframe id='resultWin'></iframe></td></tr></table>
|
|
<?php include '../../common/view/footer.html.php';?>
|