先升级SMTP或是默认发信组件或是更改组件
付费内容限时免费中...
2,继续看日志,如果 是NEWSLETTER template的encoding问题的话,则
修改文件
vendor/magento/framework/Mail/EmailMessage.php
中的内容
public function toString(): string { return $this->message->toString(); }
为以下内容
public function toString(): string { $this->message->setEncoding(encoding:'utf-8'); return $this->message->toString(); }