I'm running a script on my mybookworld(NAS) via crontab every day. And it would be nice if it could send me everyday an email report with the output of the script.
So I looked at MAILTO in crontabs, but it doesn't send me anything at all. The script ran correctly at the right time, but there was no email. This is my crontab:
~ # crontab -l [email protected] 0 0 * * * python /root/erepCrawler/src/main.py
I've written a "smaller" crontab for testing reasons:
[email protected] * * * * * echo "blaah"
This should send me every minute an email with "blaah" as the body. If I'm wrong please correct me.
Is there another package needed for sending mails with crontab? sendmail is installed in /opt/sbin/sendmail.
Why is crontab not working in your system? Crontab might fail for a variety of reasons: The first reason is that your cron daemon might not be working for any reason, resulting in your crontab failing. There also exists a possibility that your system's environment variables are not settled correctly.
MAILTO="" Otherwise email is sent to the owner of the crontab.
On CentOS, my cron output gets "mailed" to /var/spool/mail. See it by running less $MAIL if you want to see cron output for the current user or less /var/spool/mail/root if you want to see cron output for commands running as root.
Method # 1: By Checking the Status of Cron ServiceRunning the “systemctl” command along with the status flag will check the status of the Cron service as shown in the image below. If the status is “Active (Running)” then it will be confirmed that crontab is working perfectly well, otherwise not.
It should work in the cron with following modifications:
MAILTO="[email protected]" * * * * * echo blaah
works on my server, just tested.
after spending hours debugging why this wasn't working with nullmailer on my Debian box, I discovered I had a filter at gmail sending everything from cron to "All Mail" without going through my inbox... just something to check.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With