File: /www/wwwroot/oa.sanjiangapp.com/app/sys/mail/view/test.html.php
<?php
/**
* The test view file of mail module of ZDOO.
*
* @copyright Copyright 2009-2018 青岛易软天创网络科技有限公司(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 mail
* @version $Id: test.html.php 4029 2016-08-26 06:50:41Z liugang $
* @link http://www.zdoo.com
*/
?>
<?php include '../../common/view/header.html.php';?>
<div class='panel'>
<div class='panel-heading'><strong><i class='icon-envelope'></i> <?php echo $lang->mail->common;?> <i class='icon-arrow-right'></i> <?php echo $lang->mail->test; ?></strong></div>
<div class='panel-body'>
<form method='post' id='ajaxForm'>
<table class='table table-form w-p50'>
<tbody>
<tr><td colspan='2'><?php echo $lang->mail->inputFromEmail; ?></td></tr>
<tr>
<td class='w-200px'><?php echo html::select('to', $users, $app->user->email, 'class="form-control"'); ?></td>
<td class='form-actions'><?php echo html::submitButton($lang->mail->test) . html::linkButton($lang->mail->edit, inLink('edit')); ?></td>
</tr>
</tbody>
</table>
</form>
</div>
</div>
<?php include '../../common/view/footer.html.php';?>