码迷,mamicode.com
首页 > 系统相关 > 详细

Linux mail发送邮件

时间:2016-06-20 18:32:15      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:

发送前一天的监控日志
#!/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-hefeng600@pingan.com.cn aa@qq.com) for i in ${array[@]};do mail -s "玉衡短信发送内容定时跟踪" $i -r dbc@notice.com < $file if [ $? != 0 ]; then echo "step for mail is failed" exit 0 fi done

 

Linux mail发送邮件

标签:

原文地址:http://www.cnblogs.com/tester-hehehe/p/5601296.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!