centos7使用sendmail發送郵件

centos7使用sendmail發送郵件

1、安裝:

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

2、發送:

  1. 經過文件內容發送:
    mail -s '主題' complet@163.com < test.txt
  2. 經過管道符直接發送:
    echo '內容' | mail -s '主題' complet@163.com

    3、設置發件人信息: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

    4、查看隊列:

    mailq

    5、查看日誌:

    tail /var/log/maillog
相關文章
相關標籤/搜索