44 lines
2.8 KiB
Smarty
44 lines
2.8 KiB
Smarty
{*<!--
|
|
/*********************************************************************************
|
|
** The contents of this file are subject to the vtiger CRM Public License Version 1.0
|
|
* ("License"); You may not use this file except in compliance with the License
|
|
* The Original Code is: vtiger CRM Open Source
|
|
* The Initial Developer of the Original Code is vtiger.
|
|
* Portions created by vtiger are Copyright (C) vtiger.
|
|
* All Rights Reserved.
|
|
********************************************************************************/
|
|
-->*}
|
|
{strip}
|
|
<div class="container-fluid" id="OutgoingServerDetails">
|
|
<div class="widget_header row-fluid">
|
|
<div class="span8"><h3>{vtranslate('LBL_OUTGOING_SERVER', $QUALIFIED_MODULE)}</h3></div>
|
|
<div class="span4"><div class="pull-right"><button class="btn editButton" data-url='{$MODEL->getEditViewUrl()}' type="button" title="{vtranslate('LBL_EDIT', $QUALIFIED_MODULE)}"><strong>{vtranslate('LBL_EDIT', $QUALIFIED_MODULE)}</strong></button></div></div>
|
|
</div>
|
|
<hr>
|
|
<div class="contents row-fluid">
|
|
<table class="table table-bordered table-condensed themeTableColor">
|
|
<thead>
|
|
<tr class="blockHeader">
|
|
<th colspan="2" class="{$WIDTHTYPE}">
|
|
<span class="alignMiddle">{vtranslate('LBL_MAIL_SERVER_SMTP', $QUALIFIED_MODULE)}</span>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr><td width="25%" class="{$WIDTHTYPE}"><label class="muted pull-right marginRight10px">{vtranslate('LBL_SERVER_NAME', $QUALIFIED_MODULE)}</label></td>
|
|
<td class="{$WIDTHTYPE}" style="border-left: none;"><span>{$MODEL->get('server')}</span></td></tr>
|
|
<tr><td class="{$WIDTHTYPE}"><label class="muted pull-right marginRight10px">{vtranslate('LBL_USER_NAME', $QUALIFIED_MODULE)}</label></td>
|
|
<td class="{$WIDTHTYPE}" style="border-left: none;"><span>{$MODEL->get('server_username')}</span></td></tr>
|
|
<tr><td class="{$WIDTHTYPE}"><label class="muted pull-right marginRight10px">{vtranslate('LBL_PASSWORD', $QUALIFIED_MODULE)}</label></td>
|
|
<td class="{$WIDTHTYPE}" style="border-left: none;"><span class="password">{if $MODEL->get('server_password') neq ''}
|
|
******
|
|
{/if} </span></td></tr>
|
|
<tr><td class="{$WIDTHTYPE}"><label class="muted pull-right marginRight10px">{vtranslate('LBL_FROM_EMAIL', $QUALIFIED_MODULE)}</label></td>
|
|
<td class="{$WIDTHTYPE}" style="border-left: none;"><span>{$MODEL->get('from_email_field')}</span></td></tr>
|
|
<tr><td class="{$WIDTHTYPE}"><label class="muted pull-right marginRight10px">{vtranslate('LBL_REQUIRES_AUTHENTICATION', $QUALIFIED_MODULE)}</label></td>
|
|
<td class="{$WIDTHTYPE}" style="border-left: none;"><span>{if $MODEL->isSmtpAuthEnabled()}{vtranslate('LBL_YES', $QUALIFIED_MODULE)} {else}{vtranslate('LBL_NO', $QUALIFIED_MODULE)}{/if}</span></td></tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
{/strip} |