创建了PHP脚本来发送邮件,并将cron作业设置为每5分钟发送一次。
但是邮件没有收到。请检查以下脚本并帮助我解决。
<?php
$to = "ravxxxx@gmail.com";
$subject = "HTML email";
$message = "Error Message returned by"
// Always set content-type when sending HTML email
$headers = "MIME-Version: 1.0" . "\r\n";
$headers .= "Content-type:text/html;charset=UTF-8" . "\r\b";
$headers .= 'From: anxxxxx@domain.com' . "\r\n";
mail($to,$subject,$message,$headers);
?>
cron选项卡:crontab -l </ p>
5 * * * * /path/mail.php
答案 0 :(得分:0)
尝试:
*/5 * * * * /path/mail.php
以上显示的内容,按列:
答案 1 :(得分:0)
您是否尝试过在cron中指定php路径?
示例(找到您的php二进制文件的路径,我使用的是一个示例):
* / 5 * * * * / usr / bin / php /path/mail.php