首页 > 心得分享 > WP博客同时使用WP-Mail-SMTP与使用留言回复通知插件(Comment Reply Notification)无法发送邮件的解决办法.

WP博客同时使用WP-Mail-SMTP与使用留言回复通知插件(Comment Reply Notification)无法发送邮件的解决办法.

装WP以来,就装了WP-Mail-SMTP插件用来发送邮件.
后来又装了我爱水煮鱼的留言回复通知插件:Comment Reply Notification(作者页)插件,却一直无法发送评论邮件.

一直以为是插件设置问题,不过,在WP-Mail-SMTP上测试发送邮件却一直好好地.
苦恼至极...
昨天偶然在一个论坛上看到,说是WP-Mail-SMTP插件的一个判断原因,导致无法发送邮件.(原文找不到了...)

就翻了一下代码~
下面说一下解决办法吧~!

编辑WP-Mail-SMTP插件的wp_mail_smtp.php文件.

找到下面这样的代码:
[cc lang="php"]
// If the from email is not the default, return it unchanged
if ( $orig != $default_from ) {
return $orig;
}
[/cc]
删除,或者注释掉(建议注释掉,以后好修改回来).
我是这样处理的.

替换为下面这句:
[cc lang="php"]
// If the from email is not the default, return it unchanged
/* 为兼容 Comment Reply Notification 插件而注释
if ( $orig != $default_from ) {
return $orig;
}
*/
[/cc]
至此,问题解决~!

上一篇: 新买了个金士顿的U盘,8G的,才58块钱.

下一篇: 【易模块】将编辑框变成热键框.纯代码判断.

最近回复

标签