Stop cron from emailing me
Solution 1:
By setting the environment variable "MAILTO" as ""
Somethig like:
SHELL=/bin/bash
MAILTO=
01 * * * * /your/path/to/script/here.sh
Solution 2:
If you want a single job to stop email you simply append >/dev/null 2>&1 to it
For example:
0 * * * * /home/script >/dev/null 2>&1