admin管理员组文章数量:1435289
I have been trying to execute the PHP mail()
function and wp_mail()
function in a PHP function in WordPress.
The PHP function is called by a cron hook. The problem is, it doesn't execute the mail()
or wp_mail()
functions at all. I even threw it inside another function which I know works perfectly, and again, the cron doesn't execute the mail command. It works outside the function and it works if I call the function manually (myfunction();
) but when cron calls it, it doesn't work.
Any light? WP 2.9
I have been trying to execute the PHP mail()
function and wp_mail()
function in a PHP function in WordPress.
The PHP function is called by a cron hook. The problem is, it doesn't execute the mail()
or wp_mail()
functions at all. I even threw it inside another function which I know works perfectly, and again, the cron doesn't execute the mail command. It works outside the function and it works if I call the function manually (myfunction();
) but when cron calls it, it doesn't work.
Any light? WP 2.9
Share Improve this question edited Mar 28, 2019 at 12:54 butlerblog 5,1313 gold badges28 silver badges44 bronze badges asked Dec 22, 2010 at 18:55 user2121user21212 Answers
Reset to default 1I'd say the first thing to check is whether or not the cron is actually running properly. Whenever I have issues like this, it's usually with the cron run itself, not with the code it's calling.
Remove all of the code inside your hooked function and replace it with a single line that sets an option--something named "my_cron_last_ran" or whatever--and set the option's value to the current time. If the option doesn't appear in your wp_options table, the cron hasn't run properly.
The other troubleshooting thing I'd try is to remove everything but the mail stuff from your hooked function. If it runs and sends mail, then the issue could be that code BEFORE your mail stuff is erroring out and causing the whole thing to fail.
Based on what you wrote, wp_mail works but cron doesn't. So that's where you start troubleshooting: Find out why your function isn't triggering via cron.
本文标签: emailMail through Cron Execution does not work
版权声明:本文标题:email - Mail through Cron Execution does not work! 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745650050a2668373.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论