elementary OS 0.2 Lunaのmailコマンドで、HTMLファイルを送信する場合と、メールを添付する場合。

HTMLファイルを送信したい場合、次のようにする。(ファイル添付ではない。)

[crayon]
##### “HTML.log”は、HTMLのコードを含むファイルとします。
# cat HTML.log | mail \
-a “From: me@example.jp” \
-a “MIME-Version: 1.0” \
-a “Content-Type: text/html” \
-s “これはSubjectです。” \
you@example.jp
[/crayon]

参照:http://stackoverflow.com/questions/3317174/sending-html-mail-using-a-shell-script


メールを添付ファイルとして送信したい場合には、次のようにする。

[crayon]
# apt-get install sharutils
# uuencode /var/log/apache2/access.log filename.txt | mail -s “これはSubjectです。” you@example.jp
[/crayon]

参照:http://firegoby.jp/archives/39