Linux发送邮件

1. 安装配置软件

1.  安装软件
    yum -y install mailx sendmail

2. 配置/etc/mail.rc
在/etc/mail.rc文件的末尾加上
tail /etc/mail.rc  
set [email protected]  # 从那个邮箱发送
set smtp=smtp.qq.com  # 相应邮箱的服务器
set [email protected]  # 用户名
set smtp-auth-password=eesrmqwnfejidjfa  # 密码(援权码)
set smtp-auth=login

3. 这里使用了QQ邮箱的SMTP,需要做以下配置:
1600070909(1).png

2. 发送邮件

1. 发送邮件的方式一
echo "test linux mail" | mail -s "test mail"  [email protected]

2. 发送邮件的方式二
mail -s "test mail" [email protected] < /etc/hosts

你可能感兴趣的:(Linux发送邮件)