ファイルを添付して bash から HTML メールを送信する方法を探しています。次の行を試しましたが、100% は機能しません。以下の行は HTML メールを送信しますが、添付ファイルはありません。
( cat body.html ; uuencode in-attachfile.txt out-attachfile.txt ) | mail -s "$(echo -e "my subject\nContent-Type: text/html")" foo@example.com
これが HTML メールであることを示すために を削除するContent-Type: text/html
と、添付ファイルは機能します。
( cat body.html ; uuencode in-attachfile.txt out-attachfile.txt ) | mail -s "$(echo -e "my subject")" foo@example.com
どうすれば両方を持つことができますか?
ありがとうございました