美文网首页
Ubuntu mailutils mailx 发邮件配置

Ubuntu mailutils mailx 发邮件配置

作者: ifree321 | 来源:发表于2019-07-06 22:34 被阅读0次

参考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 from=xxx@xxx.com               #设置发送邮箱
set smtp=smtps://smtp.xxx.com:25   #设置smtp服务器和端口
set smtp-auth-user=cm@xxx.com       #设置用户名,记得加域名啊
set smtp-auth-password=xxxxx       #邮箱密码,不是什么授权码
set smtp-auth=login             #认证方式

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

bash中执行:

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

相关文章

网友评论

      本文标题:Ubuntu mailutils mailx 发邮件配置

      本文链接:https://www.haomeiwen.com/subject/exnmhctx.html