1

I am receiving email from daily running crontab which executes a php script. I want it to send me email if only it has errors or fails.

How to do that ?

Note: I am using cpanel to add cron job.

Thanks

Utku Dalmaz
  • 1,399

1 Answers1

2
* * * * * /path/to/cron/script >/dev/null

That will send all stdout to /dev/null and should only email you for anything in stderr

Mike
  • 22,748