Report this

What is the reason for this report?

Cron Job email not sent

Posted on May 17, 2018

I set the cronjob and I saw it is running good. I follow the tutorial but do not see the email coming. Please help.

MAILTO=”example@digitalocean.com”
#This is a comment
* * * * * echo ‘Run this command every minute’


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.

What command are you using to send emails?

In the snippet you provided, you used this command:

  1. echo ‘Run this command every minute’

The echo command is used to output the message to the terminal output. To send it as a email, you need to pipe it to some email client.

The exact steps are depending on the setup you have, i.e. how did you set up your email server.

For example, if you’re using Postfix (e.g. set up by following the How to Install and Configure Postfix as a Send-Only SMTP Server on Ubuntu 16.04 tutorial), you can use command such as:

  1. echo ‘Run this command every minute’ | mail -s 'subject' $MAILTO

If you’re using the correct command in your crontab file, try to execute it like a normal command, in your terminal. If you’re a new DigitalOcean user, it could be that SMTP protocol needed to send emails is disabled for your account. In that case you would have to open the support ticket to request to get it enabled for your account.

Also, maybe it could be useful to check your logs. Check does syslog (/var/log/syslog) contains some useful logs.

The developer cloud

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

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.