I need to send email with html format. I have only linux command line and command \"mail\".
Currently have used:
echo \"To: address@example.com\" >
This worked for me:
echo "HTML Message goes here" | mail -s "$(echo -e "This is the subject\nContent-Type: text/html")" foo@example.com