centos7使用sendmail发送邮件

一、安装:

  1. 安装sendmail:
    yum  -y  install  sendmail
    systemctl  start  sendmail
  2. 安装mailx:
    yum install -y mailx

二、发送:

  1. 通过文件内容发送:
    mail  -s  '主题'  complet@163.com  <  test.txt 
  2. 通过管道符直接发送:
    echo  '内容'  |  mail  -s  '主题'  complet@163.com

    三、设置发件人信息:vim /etc/mail.rc

    set from=complet@163.com
    set smtp=smtp.163.com
    set smtp-auth-user=用户名
    set smtp-auth-password=密码
    set smtp-auth=login

    四、查看队列:

    mailq

    五、查看日志:

    tail  /var/log/maillog
    
    			本文转自 Lee_吉  博客,原文链接:  http://blog.51cto.com/12173069/2055728      如需转载请自行联系原作者
    
上一篇:k8s环境下安装rook-ceph


下一篇:一些阅读碎片