linux shell傳送帶附件的郵件

2021-09-05 18:17:45 字數 716 閱讀 3836

如果沒有正文檔案的話,就用echo直接把正文打出來就行了,如:

echo "this is content" | mutt -s "this is subject" -a /path/yourfile [email protected] -c [email protected]

如果有正文檔案的話就用

cat /path/contentfile  | mutt -s "this is subject" -a /path/yourfile [email protected] -c [email protected]

mutt是linux下乙個強大的郵件客戶端軟體.

-s是主題

-a是附件

-c是抄送,多個抄送就是多個-c,如

cat /path/contentfile  | mutt -s "this is subject" -a /path/yourfile [email protected] -c [email protected] -c [email protected] -c [email protected]

如果傳送多個email,就直接列出來就行了,如

cat /path/contentfile  | mutt -s "this is subject" -a /path/yourfile [email protected]

[email protected]

[email protected]

[email protected]

linux shell 傳送email 附件

方法一 傳送單個附件 正文亂碼 mutt s mail subject a output email.html tomail 163.com output email.html 或者cat output email.html mutt s mail subject a output email.ht...

linux shell 傳送email 附件

方法一 傳送單個附件 正文亂碼 mutt s mail subject a output email.html tomail 163.com output email.html 或者cat output email.html mutt s mail subject a output email.ht...

linux shell 傳送email 附件

方法一 傳送單個附件 正文亂碼 mutt s mail subject a output email.html tomail 163.com output email.html 或者cat output email.html mutt s mail subject a output email.ht...