且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

OpenCart - 不发送电子邮件(通知或联系页面)

更新时间:2023-02-25 10:45:22

p>不完全确定为什么基地64编码是诚实的。打开 system / library / mail.php 并更改此行

Not totally sure why the base 64 encode is there to be honest. Open system/library/mail.php and change this line

echo $header .= 'From: ' . '=?UTF-8?B?' . base64_encode($this->sender) . '?=' . '<' . $this->from . '>' . $this->newline;

$header .= 'From: ' . $this->sender . ' <' . $this->from . '>' . $this->newline;