Linux ホストから HTML コンテンツ タイプのメールを送信し、メールにファイルを添付する必要があります。
cat html_mail.txt
To: me@mydomain.com
Subject: Test Mail
Content-Type: text/html; charset="us-ascii"
Content-Disposition: inline
<span style="background-color:green">This is in green</span>
以下のオプションを試しました:
mail:
mail -a attachment_file < html_mail.txt
「mail」コマンドは添付ファイルを送信しますが、html_mail.txt の HTML コンテンツがプレーン テキストとしてメールに送信されます
Execution of the command says "Ignoring headers Content-Type".
sendmail:
cat html_mail.txt |sendmail -t
sendmail sends the html content properly, but I couldn't find an option to send an attachment.