linux shell傳送帶附件的郵件

markzy5201190發表於2012-08-27
mutt 是linux下強大郵件客戶端軟體
-s 主題
-a 附件
-c 抄送,多個抄送是多個-c 
如下:
多個抄送寫郵件格式:
cat /path/contentfile | mutt -s "this is subject" -a /path/xx.zip abc@local.domain -c bb@local.domain -c ccc@local.domain  -c ....
發多個email,格式:
cat /path/contentfile | mutt -s "this is subject" -a /path/xx.zip abc@local.domain bbb@local.domain ccc@local.domain ....

沒有正文的話,直接echo 出來
echo "This is content" | mutt -s "this is subject" -a /path/xx.zip(附件中內容) xx@local.domain -c bbb@local.domain ccc@local.domain (多個抄送其他人寫法
空格 + 郵件地址)

有正文寫法:
echo /path/contentfile | mutt -s "this is subject" -a /path/xx.zip(附件中內容) xx@local.domain -c bbb@local.domain ccc@local.domain


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

相關文章