Files
2023-06-22 13:33:25 +08:00

43 lines
1.4 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{php include pubTemplate("header_admin")}
<div class="midder">
{php include template("admin/menu");}
<form method="POST" action="{SITE_URL}index.php?app=mail&ac=admin&mg=do&ts=options">
<table class="table table-hover">
<tr><td width="150">邮箱Host :</td><td><input name="mailhost" value="{$strOption[mailhost]}" /> (例如:smtp.exmail.qq.com)</td></tr>
<tr><td>使用ssl/tls:</td><td><input type="radio" name="ssl" value="0" {if $strOption['ssl']==0}checked{/if} />不使用 <input type="radio" name="ssl" value="1" {if $strOption['ssl']==1}checked{/if} /> 使用(使用SSL需要空间开启php_openssl扩展)</td></tr>
<tr><td>邮箱端口 :</td><td><input name="mailport" value="{$strOption[mailport]}" /> (例如:默认为25ssl为465tls为587)</td></tr>
<tr><td>邮箱用户 :</td><td><input name="mailuser" value="{$strOption[mailuser]}" /> (例如:user@qq.com)</td></tr>
<tr><td>邮箱密码 :</td><td><input type="password" name="mailpwd" value="" /> (例如:123456)</td></tr>
<tr><td></td><td>
<p>建议使用QQ企业邮箱 <a target="_blank" href="https://exmail.qq.com/">去申请</a></p>
<p>
不懂怎么配置? <a target="_blank" href="https://www.thinksaas.cn/article/show/48/">ThinkSAAS邮件配置教程</a>
</p>
</td></tr>
<tr><td width="150"></td><td><input class="btn btn-primary" type="submit" value="提 交" /> </td></tr>
</table>
</form>
</div>
{php include pubTemplate("footer_admin")}