MailxでHTMLメッセージを送信したい。次のコマンドを試すとき
mailx -s "Subject" [email protected] < email.html
Email.htmlのコンテンツをプレーンテキストで取得します。メッセージでは、ヘッダーのContent-Typeはtext/plainに設定されています。 -aオプションはファイルの送信を試みるため、ヘッダーの変更方法がわかりませんでした。これは answer ほぼ機能し、Content-Typeをtext/htmlに設定しますが、text/plainであるデフォルトのContent-Typeを置き換えません。
mailx -s "$(echo -e "This is the subject\nContent-Type: text/html")" [email protected] < email.html
この結果を与える:
From: [email protected]
To: [email protected]
Subject: This is the subject
Content-Type: text/html
Message-ID: <538d7b66.Xs0x9HsxnJKUFWuI%[email protected]>
User-Agent: Heirloom mailx 12.4 7/29/08
MIME-Version: 1.0
boundary="=_538d7b66.z5gaIQnlwb1f/AOkuuC+GwF1evCaG/XIHQMbMMxbY6satTjK"
This is a multi-part message in MIME format.
--=_538d7b66.z5gaIQnlwb1f/AOkuuC+GwF1evCaG/XIHQMbMMxbY6satTjK
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
<html>
<body>
<p>Helo wolrd</p>
</body>
</html>
PS:私もuuencodeで試しました。ウェブメールにメッセージを表示しようとすると、空白のページが表示されます...
mailx
コマンドが -a
(ヘッダーを追加)オプション:
$ mailx -a 'Content-Type: text/html' -s "my subject" [email protected] < email.html
そうでない場合は、 sendmail
を使用してみてください。
# create a header file
$ cat mailheader
To: [email protected]
Subject: my subject
Content-Type: text/html
# send
$ cat mailheader email.html | sendmail -t
メールにはさまざまなバージョンがあります。 mail -s subject to1 @ address1 to2 @ address2を超える場合
一部のmailx実装では、たとえばUbuntuまたはDebianのbsd-mailxのmailutilsからは、そのためのオプションがあるため、簡単です。
mailx -a 'Content-Type: text/html' -s "Subject" to@address <test.html
Heirloom mailxでは、便利な方法はありません。任意のヘッダーを挿入する1つの可能性は、editheaders = 1を設定し、外部エディター(スクリプトの場合もある)を使用することです。
## Prepare a temporary script that will serve as an editor.
## This script will be passed to ed.
temp_script=$(mktemp)
cat <<'EOF' >>"$temp_script"
1a
Content-Type: text/html
.
$r test.html
w
q
EOF
## Call mailx, and tell it to invoke the editor script
EDITOR="ed -s $temp_script" heirloom-mailx -S editheaders=1 -s "Subject" to@address <<EOF
~e
.
EOF
rm -f "$temp_script"
一般的なPOSIX mailxでは、ヘッダーを取得する方法がわかりません。
Mailまたはmailxを使用する場合は、次のことに注意してください
これは、特定のLinuxディストリビューション内でも移植できません。たとえば、UbuntuとDebianの両方には、mailとmailxの代替がいくつかあります。
メッセージを作成するとき、mailおよびmailxは〜で始まる行をコマンドとして扱います。テキストをメールにパイプする場合、このテキストが〜で始まる行を含まないように調整する必要があります。
とにかくソフトウェアをインストールする場合は、mail/Mail/mailxよりも予測可能なものをインストールすることもできます。たとえば、mutt。 Muttでは、-Hオプションを使用して入力のほとんどのヘッダーを指定できますが、Content-Typeはmuttオプションで設定する必要があります。
mutt -e 'set content_type=text/html' -s 'hello' 'to@address' <test.html
または、sendmailを直接呼び出すことができます。 sendmailにはいくつかのバージョンがありますが、それらはすべてsendmail -tをサポートしており、最も簡単な方法でメールを送信し、メールから受信者のリストを読み取ります。 (すべてがBcc:をサポートしているわけではないと思います。)ほとんどのシステムでは、sendmailは通常の$ PATHではなく、/ usr/sbinまたは/ usr/libにあります。
cat <<'EOF' - test.html | /usr/sbin/sendmail -t
To: to@address
Subject: hello
Content-Type: text/html
EOF
Arch Linuxで次のものを使用できました(-a
フラグは添付ファイルに使用されます)数年間:
mailx -s "The Subject $( echo -e "\nContent-Type: text/html" [email protected] < email.html
これにより、Content-Typeヘッダーがサブジェクトヘッダーに追加されました。これは最近の更新まで問題なく機能していました。これで、新しい行が-s
件名。おそらく、これはセキュリティを改善するために行われました。
件名をハッキングする代わりに、bashサブシェルを使用します。
(
echo -e "Content-Type: text/html\n"
cat mail.html
) | mail -s "The Subject" -t [email protected]
そして、実際にはmailx
のサブジェクトフラグのみを使用しているため、@ dogbaneが示唆するようにsendmail
に切り替えない理由はないようです。
(
echo "To: [email protected]"
echo "Subject: The Subject"
echo "Content-Type: text/html"
echo
cat mail.html
) | sendmail -t
Bashサブシェルを使用すると、一時ファイルを作成する必要がなくなります。