Ubuntu VPS 使用 heirloom-mail 調用 163 郵箱 SMTP 服務器發送郵件

網易開放POP3/SMTP/IMAP服務能讓你在本地客戶端(Foxmail/Thunderbird)上更好地收發郵件.
SMTP認證的目的是爲了使用戶避免受到垃圾郵件的侵擾,簡單地說就是要求必須在提供了帳戶名和密碼以後才能夠登陸SMTP服務器,這就使得那些垃圾郵件的散播者無可乘之機.
POP3服務器用來接收郵件,SMTP服務器用於發送郵件.
POP3服務器: pop.163.com
SMTP服務器: smtp.163.com

mailutils裏的mail跟heirloom-mailx裏的mail是不同的.
heirloom-mailx能夠很容易配置外部SMTP服務器發送郵件.

Ubuntu上安裝heirloom-mailx:
sudo apt-get install heirloom-mailx


sudo nano /etc/nail.rc 添加網易163郵箱開放的須要認證的smtp服務器: 
shell

set from=USER@163.com
set smtp=smtp.163.com
set smtp-auth-user=USER
set smtp-auth-password=PASSWORD
set smtp-auth=login

其中USER@163.com是你的163郵箱,PASSWORD是你郵箱的密碼.  服務器


在命令行發郵件給QQ郵箱用戶:
echo "郵件內容" | heirloom-mailx -s "郵件標題" 123@qq.com

加參數v能夠看到mail輸出的詳細(Verbose)信息: spa

echo "郵件內容" | heirloom-mailx -vs "郵件標題" 123@qq.com
相關文章
相關標籤/搜索