mutt
とを使用せずにbashスクリプトから電子メールでファイルを添付ファイルに送信する方法はuuencode
?
ベストアンサー1
echo "Message body" | mailx -s "Subject" -a "/path/to/attachment" [email protected]
または
cat "/path/to/messagebody.txt" | mailx -s "Subject" -a "/path/to/attachment" [email protected]