I want to set two headers for mutt command. Here is what I am using.
mutt -s "Subject" -e "my_hdr From:[email protected] Content-Type: text/html" [email protected] < body.html
But it doesn't work. How can I set multiple headers with -e
option?
Use multiple -e
options:
mutt -s "Subject" \
-e "my_hdr From: [email protected]" \
-e "my_hdr Content-Type: text/html" \
[email protected] < body.html
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With