39 lines
1.4 KiB
PHP
Executable File
39 lines
1.4 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* The save 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 Chunsheng Wang <wwccss@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'>
|
|
<h2>
|
|
<?php echo $lang->mail->common;?>
|
|
<small class='text-success'> <?php echo $lang->saveSuccess;?> <?php echo html::icon('check-circle');?></small>
|
|
</h2>
|
|
</div>
|
|
<div class='alert alert-block with-icon'>
|
|
<div class='content'>
|
|
<?php echo $lang->mail->successSaved;?>
|
|
<?php if($this->post->turnon):?>
|
|
<?php if($mailExist):?>
|
|
<?php echo html::a(inlink('test'), $lang->mail->test, '', "class='btn btn-primary btn-sm'");?>
|
|
<?php else:?>
|
|
<span class='content alert-warning'>
|
|
<i class="icon-exclamation-sign"></i><?php echo $lang->mail->setForUser;?>
|
|
</span>
|
|
<?php endif;?>
|
|
<?php endif;?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php include '../../common/view/footer.html.php';?>
|