Linux mail发送邮件
Posted 贺呵呵
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux mail发送邮件相关的知识,希望对你有一定的参考价值。
发送前一天的监控日志
#!/bin/bash source /etc/profile time=`date -d ‘-1 day‘ "+%Y%m%d"` #判断服务是否已经启动 ser=`/usr/bin/pgrep sendmail` if [ "$ser" != "" ] then echo "the service is running" else /etc/init.d/sendmail start fi #要发送的文件 file=/home/wlycle_uniq/data/send_head_data$time.info #收件人 array=(ex-[email protected] [email protected]) for i in ${array[@]};do mail -s "玉衡短信发送内容定时跟踪" $i -r [email protected] < $file if [ $? != 0 ]; then echo "step for mail is failed" exit 0 fi done
以上是关于Linux mail发送邮件的主要内容,如果未能解决你的问题,请参考以下文章