アウトプットができる技術者に

it's a time to take a new step !

メール送信

mail コマンドは よく 他のmailコマンドにシンボリックリンクされてるので注意が必要
mailxとかnailとか

単純送信

echo "body" | mail -s "subject" xxx@example.com

添付ファイル付き

echo "message.txt" > tmp/tmp.txt
(echo "body"; uuencode tmp/tmp.txt tmp.txt) | mail -s "subject" xx@example.com

差出人指定

echo "body" | mail -s "subject" -r "xx@from.add(Taro Yamada)" xxx@example.com