zentaopms/module/mail/view/index.html.php
2023-05-16 10:47:08 +08:00

33 lines
1.1 KiB
PHP
Executable File

<?php
/**
* The index view file of mail module of ZenTaoPMS.
*
* @copyright Copyright 2009-2015 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.cnezsoft.com)
* @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
* @author Yidong Wang <yidong@cnezsoft.com>
* @package mail
* @version $Id$
* @link http://www.zentao.net
*/
?>
<?php include $this->app->getModuleRoot() . 'message/view/header.html.php';?>
<div id='mainContent' class='main-content'>
<div class='center-block mw-700px'>
<div class='main-header'>
<div class='heading'>
<strong><?php echo $lang->mail->selectMTA;?></strong>
</div>
</div>
<table class='table table-form' id='selectmta'>
<tr>
<td class='text-center'>
<?php if(common::hasPriv('mail', 'detect')):?>
<?php echo html::a(inlink('detect'), $lang->mail->smtp, '', "class='btn w-120px'")?>
<?php endif;?>
</td>
</tr>
</table>
</div>
</div>
<?php include '../../common/view/footer.html.php';?>