您好到目前为止我无法发送有关cron的电子邮件,让我解释一下我当前的问题:
我有下一个bash脚本:
# When the script starts send a email notification
echo "Subject: work completed > /tmp/msg
echo "From: admin@automated" >> /tmp/msg
echo >> /tmp/msg
echo "the work has finished" >> /tmp/msg
echo "some variables here ... " >> /tmp/msg
sendmail mypersonalemail@gmail.com < /tmp/msg
## here the script execute some things
## and when finished it send another email to notify this, and this other email has more variables
因此,当我手动执行脚本时,这是有效的,我的意思是它将邮件发送到我的电子邮件帐户,没有任何问题,所以我尝试自动执行此任务以自动发送此邮件到cron的某个时间,我必须评论cron适用于其他脚本,但特别是这看起来像cron无法发送电子邮件,我不知道为什么,我正在调查,但显然这是一个特定的问题:(。 不一定需要cron来自动执行此任务,可能是您知道的其他实用程序:)
我的操作系统是ubuntu 14.04.03 LTS
其他问题在这里,我想知道为什么“sendmail”在ubuntu 15.10中不起作用或者如何配置它
干杯