Unix - mailx を使用してメールの添付ファイル、件名、本文を送信する

Unix - mailx を使用してメールの添付ファイル、件名、本文を送信する

mailx コマンドを使用してメールの添付ファイル、件名、本文を送信する方法を教えてください。

使っています

uuencode travel$datestamp.XLS Travel$datestamp.XLS | mail -s "International Savers Tracking" [email protected] -- -f [email protected] < BodyofTheMail.txt 

メール本文なしで件名付きの添付ファイルを送信する

答え1

にパイプして に間接的に接続していますmail。標準入力は 1 つしか持てません。また、uuencodeは必要ありません。次を試してください:

mail -s "Subject" -a /path/to/attachments/file.ext [email protected] < /path/to/messagebody.txt

関連情報