Home  >  Article  >  Backend Development  >  PHP mail 通过Windows的SMTP发送邮件失败的解决方案_PHP

PHP mail 通过Windows的SMTP发送邮件失败的解决方案_PHP

WBOY
WBOYOriginal
2016-06-01 12:23:00790browse

原因必定在WordPress的php邮件发送类中。轻松Google到了原因:原来Windows的SMTP服务不支持Name

这样的邮件格式,必须直接写成address@domain.com。于是把WordPress的class-phpmailer.php中的这行
复制代码 代码如下:
$from[0][1] = $this->FromName;

注释掉就OK了。
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn