1、編輯使用者Home目錄下的.muttrc檔案,設定發信環境。
複製代碼 代碼如下:
# 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、發信指令碼
複製代碼 代碼如下:
# 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` 裝置日檢報告,敬請查收。" >> $mailcontent
cat mailcontent | /usr/bin/mutt -s "裝置日檢報告" -a /root/owinux/report.xls owinux@126.com -c owinux@yeah.net -c owinux@sina.com
3、簡要說明:
-s:指定主題
-a:附件
-c:抄送,需要抄送多人的話,須使用多個 -c 選項
使用上面的發信環境可以保證在頁面查看郵件的時候,附件名不出現亂碼。
其中 .muttrc 的 "set from"可以隨便設定,可以是不存在的郵箱地址,當然正確的最好。
比如:
複製代碼 代碼如下:
set from=abc@owinux.com
不過也並不是你設定的正確的郵箱地址就一定能發送成功。
複製代碼 代碼如下:
set from=owinux@126.com
我新註冊了一個 owinux@126.com,然後將 set from 設定為owinux@126.com,就沒有成功。
原因在於126郵箱報了 550 MI:SPF 錯誤,串連到126 企業退信的常見問題? 發現
複製代碼 代碼如下:
550 MI:SPF 發信IP未被發送域的SPF許可。