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 命令设置两个标头。这是我正在使用的。
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