我搜索了好久網址不是找不到就是沒有相關解決問題
除了改emailer.php:(這方法我試過~在2.0.19無效)
http://phpbb-tw.net/phpbb/viewtopic.php?t=21322
該主題內提供的網址掛掉
http://phpbb-tw.net/phpbb/viewtopic.php?t=7107
有沒有徹底解決的方法
版主: 版主管理群

請參考oscerropper 寫:請問有人知道這篇問題原因嘛?
我搜索了好久網址不是找不到就是沒有相關解決問題
除了改emailer.php:(這方法我試過~在2.0.19無效)
http://phpbb-tw.net/phpbb/viewtopic.php?t=21322
該主題內提供的網址掛掉
http://phpbb-tw.net/phpbb/viewtopic.php?t=7107
有沒有徹底解決的方法




代碼: 選擇全部
#
#-----[OPEN]----------
#
includes/emailer.php
#
#-----[ FIND 尋找]---------------------------------------------
#
$result = smtpmail($to, $this->subject, $this->msg, $this->extra_headers);
#
#-----[ BEFORE, ADD 之前,新增]---------------------------------------------
#
$this->subject = "=?UTF-8?B?" . base64_encode($this->subject) . "?=";
#
#-----[ FIND 尋找]---------------------------------------------
#
$to = ($to == '') ? (($board_config['sendmail_fix']) ? ' ' : 'Undisclosed-recipients:;') : $to;
$result = @mail($to, $this->subject, preg_replace("#(?<! )
#s", "
", $this->msg), $this->extra_headers);
#
#-----[ MODIFY, ADD 修改, ?#91;上]---------------------------------------------
#
$to = ($to == '') ? (($board_config['sendmail_fix']) ? ' ' : 'Undisclosed-recipients:;') : $to;
$this->subject = iconv('UTF-8','Big5',$this->subject);
$result = @mail($to, $this->subject, preg_replace("#(?<! )
#s", "
", $this->msg), $this->extra_headers);
#
#-----[ SAVE/CLOSE ALL FILES 儲存/關閉所有檔案 ]-------------------
#
# EoM 修正結束
#