Shell指令碼實現自動發送郵件的例子_linux shell

來源:互聯網
上載者:User

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許可。 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.