Cron Job Notification Email

Avatar
  • Answered
I have 2 cron jobs set up...both run fine.
The problem is that I only get a notification email from one of the jobs, not both.
How do I get notifications from both jobs?
Thanks in advance for any help.
Avatar
Scott
Hello Guido,

With cron jobs, you will only receive an email if that particular job produces output. If you need to force the one cron job to produce output you can simply insert the following statement at the end of the script:

echo "done";

Best Regards,
Scott M