admin管理员组文章数量:1434889
I moved the blog I was working on from my development server (on DreamHost) to the client's server (some local host which they are unwilling to switch from). Everything seems to be working perfectly, except that users are not receiving their new user confirmation emails, or their lost password emails.
I have Contact Form 7 installed, and that sends emails out perfectly, so I know the server is set up to send mail successfully.
I have checked that I have the correct email address in General Settings and in the User Settings.
I have tested a simple mail() script on the server, and that sends just fine:
<?php
$message = "Line 1\nLine 2\nLine 3";
$message = wordwrap($message, 70);
mail('[email protected]', 'My Subject', $message);
?>
PHP version is 5.2.6-1+lenny9
Where do I even begin with this? My google-fu is not strong today (I get a bunch of crappy posts that don't actually help)... I'd prefer not to have to resort to a plugin to fix this (although I'm happy to use a plugin to temporarily troubleshoot, if necessary).
I moved the blog I was working on from my development server (on DreamHost) to the client's server (some local host which they are unwilling to switch from). Everything seems to be working perfectly, except that users are not receiving their new user confirmation emails, or their lost password emails.
I have Contact Form 7 installed, and that sends emails out perfectly, so I know the server is set up to send mail successfully.
I have checked that I have the correct email address in General Settings and in the User Settings.
I have tested a simple mail() script on the server, and that sends just fine:
<?php
$message = "Line 1\nLine 2\nLine 3";
$message = wordwrap($message, 70);
mail('[email protected]', 'My Subject', $message);
?>
PHP version is 5.2.6-1+lenny9
Where do I even begin with this? My google-fu is not strong today (I get a bunch of crappy posts that don't actually help)... I'd prefer not to have to resort to a plugin to fix this (although I'm happy to use a plugin to temporarily troubleshoot, if necessary).
Share Improve this question asked Nov 2, 2010 at 9:41 gillespiezagillespieza 1,2855 gold badges26 silver badges46 bronze badges1 Answer
Reset to default 2Have you checked that wp_mail()
works properly? CF7 might be using its own custom SMTP interface or something like that, to work around issues in wp_mail()
.
本文标签: How do I troubleshoot registrationpassword email errors
版权声明:本文标题:How do I troubleshoot registrationpassword email errors? 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745643532a2667998.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论