How to get cron job errors in email with MAILTO?

Better Stack Team
Updated on October 5, 2023

One of the neat features of Cron is the ability to send emails when an error occurs during the execution of the cronjob. This can be done using the MAILTO environmental variable. When executing cronjob, any output is mailed to the owner of the crontab or to the user or email address specified in the MAILTO environment variable in the crontab, if such exists.

🔭 Want to get alerted when your Cron doesn’t run correctly?

Go to Better Stack and start monitoring in 5 minutes.

Setting the MAILTO variable

MAILTO environmental variable is set in the same way as any other variable using the = operator.

As a value of the variable, you can specify either a specific email address or a specific user, or even an empty string in which case no email will be sent.

 
#mail to an email
MAILTO=email@example.com

#mail to a selected user
MAILTO=someuser

Sending an email

First, open preferred crontab in the select text editor. Then assign a value to the MAILTO variable on the line above the select cronjob as shown in the example below.

 
MAILTO=email@example.com
*   *  *   *   *   /bin/backup.sh

This will execute the /bin/backup.sh shell script every minute. If the script generates any output during the execution, it will be sent to email@example.com.

Make sure that your script doesn't generate output if everything goes as planned as it will send this output regardless of its nature.

Make your mark

Join the writer's program

Are you a developer and love writing and sharing your knowledge with the world? Join our guest writing program and get paid for writing amazing technical guides. We'll get them to the right readers that will appreciate them.

Write for us
Writer of the month
Marin Bezhanov
Marin is a software engineer and architect with a broad range of experience working...
Build on top of Better Stack

Write a script, app or project on top of Better Stack and share it with the world. Make a public repository and share it with us at our email.

community@betterstack.com

or submit a pull request and help us build better products for everyone.

See the full list of amazing projects on github