我想为mutt命令设置两个头.这是我正在使用的.
mutt -s "Subject" -e "my_hdr From:[email protected] Content-Type: text/html" [email protected] < body.html
但它不起作用.如何使用-e选项设置多个标头?
解决方法
使用多个-e选项:
mutt -s "Subject" \ -e "my_hdr From: [email protected]" \ -e "my_hdr Content-Type: text/html" \ [email protected] < body.html