centos 傳送郵件

孤竹星發表於2015-08-11
1. 檢查是否安裝了sendmail
rpm -qa | grep sendmail

2. 安裝sendmail
yum install -y sendmail
yum install -y sendmail-cf

3.配置外部的smpt服務
set from=fromUser@domain.com smtp=smtp.domain.comset smtp-auth-user=username smtp-auth-passsword=passwordset smtp-auth=login

說明:

from是傳送的郵件地址

smtp是發生的外部smtp伺服器的地址

smtp-auth-user是外部smtp伺服器認證的使用者名稱

smtp-auth-password是外部smtp伺服器認證的使用者密碼

smtp-auth是郵件認證的方式

4.測試傳送郵件
echo 'hello!' | sendmail -s "hello test" username@qq.com

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/28282660/viewspace-1768313/,如需轉載,請註明出處,否則將追究法律責任。

相關文章