我在运行一个错误的 PHP 脚本,我想发送电子邮件每5分钟
我现在的错误工作:
10 * * * * /usr/bin/php /mydomain.in/cromail.php > /dev/null 2>&1
The cronmail.php is as follows:
<?php
$from = 'D'; // sender
$subject = 'S';
$message = 'M';
$message = wordwrap($message, 70);
mail("myemail@gmail.com", $subject, $message, "From: $from\n");
?>
但是我已经30分钟没有收到这种配置的电子邮件了。