Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
mutt コマンドに 2 つのヘッダーを設定したい。これが私が使用しているものです。
mutt -s "Subject" -e "my_hdr From:abc@gmail.com Content-Type: text/html" xyz@gmail.com < body.html
しかし、うまくいきません。オプションで複数のヘッダーを設定するにはどうすればよい-eですか?
-e
複数の-eオプションを使用します。
mutt -s "Subject" \ -e "my_hdr From: abc@gmail.com" \ -e "my_hdr Content-Type: text/html" \ xyz@gmail.com < body.html