Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Chaining the commands this way should result in a single exit which would have it’s output redirected to /dev/null preventing the email but without seeing the exact line in the crontab it’s hard to tell for sure.
The mailto option to stop all cron related emails can be done like this.
Open /etc/crontab in an editor
You should see these lines:
SHELL=/bin/sh
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
Directly after those, append:
MAILTO=""
Then save the file and run
service cron restart
and the change should take effect.