1. 安装配置软件
1. 安装软件
yum -y install mailx sendmail
2. 配置/etc/mail.rc
在/etc/mail.rc文件的末尾加上
tail /etc/mail.rc
set from=xxx@qq.com # 从那个邮箱发送
set smtp=smtp.qq.com # 相应邮箱的服务器
set smtp-auth-user=xx@qq.com # 用户名
set smtp-auth-password=eesrmqwnfejidjfa # 密码(援权码)
set smtp-auth=login
3. 这里使用了QQ邮箱的SMTP,需要做以下配置:
2. 发送邮件
1. 发送邮件的方式一
echo "test linux mail" | mail -s "test mail" xxx@163.com
2. 发送邮件的方式二
mail -s "test mail" xxx@126.com < /etc/hosts