一.sendmail和sendEmail区别
sendmail是一款邮件服务器软件,sendEmail是命令行SMTP邮件客户端
二.senEmail安装
下载地址:http://caspian.dotconf.net/menu/Software/SendEmail/sendEmail-v1.56.tar.gz
#sendEmail解压后即可使用 wget http://caspian.dotconf.net/menu/Software/SendEmail/sendEmail-v1.56.tar.gz -P /download tar xf /download/sendEmail-v1.56.tar.gz -C /download/tmp cp /download/tmp/sendEmail-v1.56/sendEmail /usr/local/bin/
测试能否成功发送邮件
/usr/local/bin/sendEmail -f "[email protected]" -t "[email protected]" -s "smtp.mxhichina.com" -u "myTest" -o message-content-type=html -o message-charset=utf-8 -xu "[email protected]" -xp "[email protected]" -m "hello,this is the test contents" #成功后提示下列内容Aug 24 14:50:26 sysqsquantop009 sendEmail[12003]: Email was sent successfully!
命令说明
/usr/local/bin/sendEmail 命令主程序 -f [email protected]163.com 发件人邮箱 -s smtp.163.com 发件人邮箱的smtp服务器 -u "我是邮件主题" 邮件的标题 -o message-content-type=html 邮件内容的格式,html表示它是html格式 -o message-charset=utf8 邮件内容编码 -xu [email protected]163.com 发件人邮箱的用户名 -xp 123456 发件人邮箱密码 -m "我是邮件内容" 邮件的具体内容 --help 使用命令帮助
命令说明
三.编写报警邮件发送脚本
#!/bin/bash #export LANG=zh_CN.UTF-8 to=$1 subject=$2 iconv -f UTF-8 -t GB2312 $subject > $subject #解决foxmail收邮件的时候中文标题乱码 body=$3 from=[email protected] smtp=smtp.mxhichina.com passwd=Q????234@ /usr/local/bin/sendEmail -f "$from" -t "$to" -s "$smtp" -u "$subject" -o message-content-type=html -o message-charset=utf-8 -xu "$from" -xp "$passwd" -m "$body"
sendEmail.sh
#chmod +x /opt/alertscripts/sendEmail.sh
四.配置zabbix
创建一个告警动作(参考笔者上一篇博客http://www.cnblogs.com/xiami-xm/p/7323926.html)
第一步:创建告警媒介操作稍有不同,不用设置smtp服务器,直接用脚本实现
五.测试
时间: 2024-10-09 17:59:04