一、安装:

  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