安装mailx
yum -y install mailx
rm -f /bin/mail
ln -s /bin/mailx /bin/mail
编辑/etc/mail.rc
注意:如果具备企业邮箱最好使用企业邮箱,不然普通用户发送的内容会被对应的邮箱公司认为是垃圾邮件;我这里是使用的腾讯的免费版企业邮箱;
set from=xxxx@xx.com
set smtp=smtp.exmail.qq.com
set set smtp-auth-user=xxxx@xx.com
set smtp-auth-password=xxxx
set smtp-auth=login
验证
echo "test" | mail -s "test" xxxx@xx.com
mail -s "test" xxxx@xx.com