Ubuntu mailutils mailx 发邮件配置

参考https://blog.csdn.net/mier9042/article/details/83656358

  1. 安装mailutils和heirloom-mailx
apt-get install mailutils
apt-get install heirloom-mailx

  1. 配置
vi /etc/s-nail.rc

在文件最后添加以下配置

注意第二行 smtps://


set [email protected]               #设置发送邮箱
set smtp=smtps://smtp.xxx.com:25   #设置smtp服务器和端口
set [email protected]       #设置用户名,记得加域名啊
set smtp-auth-password=xxxxx       #邮箱密码,不是什么授权码
set smtp-auth=login             #认证方式

# 第三行必须加smtps:// 也就是在smtp主机前加smtps协议。

bash中执行:

# 发送带两个附件的邮件给[email protected]
echo '文本内容。。。' | mail -a /opt/report_for_nginx-2019-07-05.html -a /opt/report_for_rails-2019-07-05.html -s "邮件主题" [email protected]

你可能感兴趣的:(Ubuntu mailutils mailx 发邮件配置)