修改eyou里留言发送邮件时的发件人信息问题
如题,默认情况下,如果发件件箱是12345@qq.com,那么收到的发件人信息是12345。想改成其它内容的话,就要改这个文件application/common/logic/EmailLogic.php。
找到
找到
private function send_phpmailer 里面的内容
在<label for="smtp_user"><em>*</em>发信邮箱帐号</label>下添加下列语句:
====================================================================
$mail->setFrom(发邮件地,发送者昵称),不填第二个参数的话,如上述地址的话,就会直接拿12345这个内容填。
想在后台灵活替换为自定义昵称,可找到application/admin/template/system/smtp.htm在<label for="smtp_user"><em>*</em>发信邮箱帐号</label>下添加下列语句:
====================================================================
<dl class="row">
<dt class="tit">
<label for="smtp_nick"><em>*</em>发信邮箱昵称</label>
</dt>
<dd class="opt">
<input id="smtp_nick" name="smtp_nick" value="{$smtp.smtp_nick|default=''}" class="input-txt" type="text" autocomplete="off"/>
</dd>
</dl>
===================================================================

浙公网安备 33010602011771号