我想为mutt命令设置两个标头。这是我正在使用的。
mutt -s "Subject" -e "my_hdr From:abc@gmail.com Content-Type: text/html" xyz@gmail.com < body.html但它不起作用。如何使用-e选项设置多个headers?
发布于 2012-11-26 23:28:18
使用多个-e选项:
mutt -s "Subject" \
-e "my_hdr From: abc@gmail.com" \
-e "my_hdr Content-Type: text/html" \
xyz@gmail.com < body.htmlhttps://stackoverflow.com/questions/13567367
复制相似问题