Files
EasySoft-ZenTaoPMS/module/mail/view/test.html.php
2013-01-18 01:58:14 +00:00

29 lines
873 B
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
*/
include '../../common/view/header.html.php';
?>
<form method='post' target='hiddenwin'>
<table class='table-4' align='center'>
<caption><?php echo $lang->mail->test; ?></caption>
<tr>
<td class='a-center'>
<?php
echo html::select('to', $users, $app->user->account);
echo html::submitButton($lang->mail->test);
echo html::linkButton($lang->mail->edit, $this->inLink('edit'));
?>
</td>
</tr>
</table>
</form>
<?php include '../../common/view/footer.html.php';?>