我想为 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

关于linux - Mutt 命令的多个 header ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13567367/

10-10 18:07