2.配置邮件发送环境

centos7.2 使用sendmail发送邮件

一、安装:

安装sendmail:

yum  -y install sendmail 

systemctl start sendmail.service


安装mailx:

yuminstall -y mailx

二、发送:

通过文件内容发送:

mail -s '主题' [email protected]  <  medelmail.txt

通过管道符直接发送:

echo '内容' |  mail-s '主题'  [email protected]

三、设置发件人信息:vim /etc/mail.rc

[email protected]

setsmtp=smtp.163.com

setsmtp-auth-user=用户名

setsmtp-auth-password=密码

setsmtp-auth=login

四、查看队列:

mailq

五、查看日志:

tail -fn500  /var/log/maillog

你可能感兴趣的:(2.配置邮件发送环境)