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

shell发送邮件函数

时间:2018-03-06 10:49:07      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:发送邮件函数

#发送邮件函数

function send_mail(){
#定义邮件发送列表
maillist=(
zhengwei.liu@xxx
xiaogang.yang@xxx
sundy.she@xxx
)
if [ "$1" == "gateway" ];then
        for mail in ${maillist[*]};do
                echo "无法ping通网关,请检查网络" | mail -s "PI(10.78.1.122)网络故障" $mail
        done
elif [ "$1" == "change" ];then
        for mail in ${maillist[*]};do
                mail -s "$VIP发生切换" $mail < /tmp/VIP_qiehuan.txt
        done
fi
}

注:$1为函数的参数,不是脚本的参数

shell发送邮件函数

标签:发送邮件函数

原文地址:http://blog.51cto.com/liuzhengwei521/2083282

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