1. 程式人生 > >centos7使用sendmail傳送郵件

centos7使用sendmail傳送郵件

centos7使用sendmail傳送郵件

Lee_吉關注0人評論36608人閱讀2017-12-29 06:08:10  

一、安裝:

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

二、傳送:

  1. 通過檔案內容傳送:
    mail  -s  '主題'  [email protected]  <  test.txt 
  2. 通過管道符直接傳送:
    echo  '內容'  |  mail  -s  '主題'  [email protected]

    三、設定發件人資訊: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