我在博客网站上使用Wordpress 4.0.0。
在注册新用户期间,它会通过邮件发送激活链接。雅虎正确收到邮件,但Gmail没有。
我已尝试mail-smtp
插件,但它无法正常使用。
这是我现在使用的代码:
function new_mail_from($old) {
return 'name@mydomain.com';
}
function new_mail_from_name($old) {
return 'name';
}
add_filter('wp_mail_from', 'new_mail_from');
add_filter('wp_mail_from_name', 'new_mail_from_name');
为什么会出现此问题以及如何解决?
答案 0 :(得分:0)
由于smtp.googel.com的Google证书问题,这可能是暂时的?例如,请参见:http://www.pcworld.com/article/2906216/expired-google-certificate-temporarily-disrupts-gmail-service.html
日志中是否有任何具体错误,以便我们查看问题所在?