1、編輯用戶Home目錄下的.muttrc文件,設(shè)置發(fā)信環(huán)境。
復(fù)制代碼 代碼如下:
# cat /root/.muttrc
set envelope_from=yes
set from=owinux@sina.cn
set realname="Owinux"
set use_from=yes
set rfc2047_parameters=yes
set charset="utf-8"
2、發(fā)信腳本
復(fù)制代碼 代碼如下:
# cat automail.sh
#!/bin/sh
# automail.sh
DIR=/root/owinux
mailcontent=$DIR/mailcontent
> "$mailcontent"
echo -e "owinux,您好!\n" >> $mailcontent
echo -e "\t附件為 `date +%Y-%m-%d` 設(shè)備日檢報(bào)告,敬請查收。" >> $mailcontent
cat mailcontent | /usr/bin/mutt -s "設(shè)備日檢報(bào)告" -a /root/owinux/report.xls owinux@126.com -c owinux@yeah.net -c owinux@sina.com
3、簡要說明:
-s:指定主題
-a:附件
-c:抄送,需要抄送多人的話,須使用多個(gè) -c 選項(xiàng)
使用上面的發(fā)信環(huán)境可以保證在頁面查看郵件的時(shí)候,附件名不出現(xiàn)亂碼。
其中 .muttrc 的 "set from"可以隨便設(shè)置,可以是不存在的郵箱地址,當(dāng)然正確的最好。
比如:
復(fù)制代碼 代碼如下:
set from=abc@owinux.com
不過也并不是你設(shè)置的正確的郵箱地址就一定能發(fā)送成功。
復(fù)制代碼 代碼如下:
set from=owinux@126.com
我新注冊了一個(gè) owinux@126.com,然后將 set from 設(shè)置為owinux@126.com,就沒有成功。
原因在于126郵箱報(bào)了 550 MI:SPF 錯(cuò)誤,連接到126 企業(yè)退信的常見問題? 發(fā)現(xiàn)
復(fù)制代碼 代碼如下:
550 MI:SPF 發(fā)信IP未被發(fā)送域的SPF許可。
您可能感興趣的文章:- Shell腳本監(jiān)控服務(wù)器在線狀態(tài)和郵件報(bào)警的方法
- Powershell中調(diào)用郵件客戶端發(fā)送郵件的例子
- PowerShell小技巧之使用Hotmail賬號(hào)發(fā)送郵件
- 3個(gè)備份系統(tǒng)文件并郵件發(fā)送的Shell腳本分享
- 當(dāng)備份數(shù)據(jù)庫不能用時(shí).用郵件列表得到WEBSHELL!(圖)
- Shell腳本實(shí)現(xiàn)刪除郵件隊(duì)列
- Shell腳本實(shí)現(xiàn)硬盤空間和表空間的使用情況統(tǒng)計(jì)并郵件通知
- linux shell發(fā)送Email郵件的方法詳解