The reason must be in the php email sending class of WordPress. Easily Google the reason: It turns out that the SMTP service of Windows does not support the email format Name
, and must be written directly as address@domain.com. So I copied this line
in WordPress’s class-phpmailer.php to the following code:
$from[0] [1] = $this->FromName;
Comment out and it will be OK.
http://www.bkjia.com/PHPjc/320089.html
www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/320089.htmlTechArticleThe reason must be in the php email sending class of WordPress. Easily Google the reason: It turns out that the Windows SMTP service does not support email formats such as Nameaddress@domain.com, and must be written directly as addr...