且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

运维dba如何使用sendEmail发送check report 邮件

更新时间:2022-06-11 18:32:40

1.软件下载,最新版本

1
2
http://caspian.dotconf.net/menu/Software/SendEmail/
sendEmail-v1.56.tar.gz


2.软件上传、安装

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[root@mysql-121 ~]# cd /usr/local/
[root@mysql-121 local]# ls
bin  games    innotop             lepus  lib64    MySQLTuner-perl-master  sbin                    share
etc  include  innotop-master.zip  lib    libexec  orzdba                  sendEmail-v1.56.tar.gz  src
[root@mysql-121 local]# tar -zxvf sendEmail-v1.56.tar.gz 
sendEmail-v1.56/
sendEmail-v1.56/CHANGELOG
sendEmail-v1.56/README
sendEmail-v1.56/README-BR.txt
sendEmail-v1.56/TODO
sendEmail-v1.56/sendEmail
sendEmail-v1.56/sendEmail.pl
[root@mysql-121 local]# cd sendEmail-v1.56
[root@mysql-121 sendEmail-v1.56]# ll
total 116
-rw-r--r-- 1 root root 13329 Sep 30  2009 CHANGELOG
-rw-r--r-- 1 root root  7949 Sep 30  2009 README
-rw-r--r-- 1 root root  4701 Sep 30  2009 README-BR.txt
-rwxr-xr-1 root root 80213 Sep 30  2009 sendEmail
lrwxrwxrwx 1 root root     9 Dec 10 09:24 sendEmail.pl -> sendEmail
-rw-r--r-- 1 root root  1229 Sep 30  2009 TODO
[root@mysql-121 sendEmail-v1.56]# cp sendEmail /usr/local/bin/


3.邮件测试,邮箱和密码都是bulabula,不能明文显示,大家都懂得

1
2
3
[root@mysql-121 sendEmail-v1.56]# sendEmail -f xxxx@163.com -t xxx@roiland.com -s smtp.163.com -u "from dba check report" -xu user -xp password -m God bless Roiland!        
Dec 10 09:31:18 localhost sendEmail[16321]: Email was sent successfully!
[root@mysql-121 sendEmail-v1.56]#


4.命令说明

1
2
3
4
5
6
7
8
9
/usr/local/bin/sendEmail 命令主程序
-f ttlsafrom@163.com           发件人邮箱
-s smtp.163.com                发件人邮箱的smtp服务器
-"我是邮件主题"              邮件的标题
-o message-content-type=html   邮件内容的格式,html表示它是html格式
-o message-charset=utf8        邮件内容编码
-xu ttlsafrom@163.com          发件人邮箱的用户名
-xp 123456                     发件人邮箱密码
-"我是邮件内容"              邮件的具体内容

5.帮助文档一定要自己看哦,这个真帮不了您!

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[root@mysql-121 sendEmail-v1.56]# sendEmail --help
sendEmail-1.56 by Brandon Zehm <caspian@dotconf.net>
Synopsis:  sendEmail -f ADDRESS [options]
  Required:
    -f ADDRESS                from (sender) email address
    * At least one recipient required via -t, -cc, or -bcc
    * Message body required via -m, STDIN, or -o message-file=FILE
  Common:
    -t ADDRESS [ADDR ...]     to email address(es)
    -u SUBJECT                message subject
    -m MESSAGE                message body
    -s SERVER[:PORT]          smtp mail relay, default is localhost:25
  Optional:
    -a   FILE [FILE ...]      file attachment(s)
    -cc  ADDRESS [ADDR ...]   cc  email address(es)
    -bcc ADDRESS [ADDR ...]   bcc email address(es)
    -xu  USERNAME             username for SMTP authentication
    -xp  PASSWORD             password for SMTP authentication
  Paranormal:
    -b BINDADDR[:PORT]        local host bind address
    -l LOGFILE                log to the specified file
    -v                        verbosity, use multiple times for greater effect
    -q                        be quiet (i.e. no STDOUT output)
    -o NAME=VALUE             advanced options, for details try--help misc
        -o message-content-type=<auto|text|html>
        -o message-file=FILE         -o message-format=raw
        -o message-header=HEADER     -o message-charset=CHARSET
        -o reply-to=ADDRESS          -o timeout=SECONDS
        -o username=USERNAME         -o password=PASSWORD
        -o tls=<auto|yes|no>         -o fqdn=FQDN
  Help:
    --help                    the helpful overview you're reading now
    --help addressing         explain addressing and related options
    --help message            explain message body input and related options
    --help networking         explain -s, -b, etc
    --help output             explain logging and other output options
    --help misc               explain -o options, TLS, SMTP auth, and more










本文转自 roidba 51CTO博客,原文链接:http://blog.51cto.com/roidba/1881410,如需转载请自行联系原作者