centos7.3使用sendmail发送邮箱

1.使用安装两个服务器,命令如下:

[root@localhost ~]#  yum install -y sendmail.x86_64

[root@localhost ~]# yum install -y mailx.x86_64

2.编辑vi /etc/mail.rc文件,添加如下内容:

set [email protected]

set smtp=smtp.qq.com

set [email protected](发送人邮箱)

set smtp-auth-password=XXXX XXXX (邮箱服务器开启smtp的授权码)

set smtp-auth=login

#获取qq邮箱授权码参考如下链接:https://jingyan.baidu.com/article/fedf0737af2b4035ac8977ea.html

3.测试发送文件。通过管道进行发送,执行如下命令:

echo '测试发送报警内容' | mail -s '发送的主题'   接受人的邮箱@qq.com

你可能感兴趣的:(centos7.3使用sendmail发送邮箱)