begin of thinksaas 3.68

Signed-off-by: kevin <kevin@lmve.net>
This commit is contained in:
2023-06-22 13:33:25 +08:00
commit 963ec1b2ea
2746 changed files with 331806 additions and 0 deletions
+43
View File
@@ -0,0 +1,43 @@
{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")}