LoginSignup
8
8

More than 5 years have passed since last update.

mailコマンドでメール送信

Posted at

mailコマンドがあるか確認

$ which mail
/usr/bin/mail

mail送信

$ echo "本文です" | mail -s "題名です" xxxx@gmail.com

-s は題名(SUBJECT)

fileの内容を送信

$ cat /path/to/file | mail -s "cat file" xxxx@gmail.com

バッチ処理で
結果をファイルに出力⇒メール送信
をする時は使っています。

8
8
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
8