亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

Mailx發送html消息

Mailx發送html消息

翻翻過去那場雪 2019-12-05 15:59:50
我想用Mailx發送html消息。當我嘗試以下命令時mailx -s "Subject"  [email protected]  < email.html 我得到純文本形式的email.html的內容。在消息中,標題Content-Type設置為text / plain。-a選項嘗試發送文件,因此我不知道如何修改標頭。這個答案幾乎可以用,它可以將Content-Type設置為text / html,但是不能替代默認的Content-Type text / plain。mailx -s "$(echo -e "This is the subject\nContent-Type: text/html")" [email protected]  < email.html給出這個結果:From: [email protected]: [email protected]: This is the subjectContent-Type: text/htmlMessage-ID: <538d7b66.Xs0x9HsxnJKUFWuI%[email protected]>User-Agent: Heirloom mailx 12.4 7/29/08MIME-Version: 1.0 boundary="=_538d7b66.z5gaIQnlwb1f/AOkuuC+GwF1evCaG/XIHQMbMMxbY6satTjK"This is a multi-part message in MIME format.--=_538d7b66.z5gaIQnlwb1f/AOkuuC+GwF1evCaG/XIHQMbMMxbY6satTjKContent-Type: text/plain; charset=us-asciiContent-Transfer-Encoding: 7bitContent-Disposition: inline<html><body><p>Helo wolrd</p></body></html>PS:我也嘗試過使用uuencode。當我嘗試在網絡郵件中顯示消息時,我得到一個空白頁...
查看完整描述

3 回答

?
動漫人物

TA貢獻1815條經驗 獲得超10個贊

很簡單,如果您的mailx命令支持-a(append header)選項:


$ 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


查看完整回答
反對 回復 2019-12-05
?
蝴蝶不菲

TA貢獻1810條經驗 獲得超4個贊

幾年來,我已經在Arch Linux(該-a標志用于附件)上成功使用了以下命令:


mailx -s "The Subject $( echo -e "\nContent-Type: text/html" [email protected] < email.html

這將Content-Type標頭附加到主題標頭,該標頭在最近更新之前一直有效?,F在,新行已從-s主題中過濾掉。據推測,這樣做是為了提高安全性。


現在,我不再依賴于修改主題行,而是使用bash子外殼程序:


(

    echo -e "Content-Type: text/html\n"

    cat mail.html

 ) | mail -s "The Subject" -t [email protected]

而且由于我們實際上僅使用mailx的subject標志,所以似乎沒有理由不sendmail按照@dogbane的建議切換到:


(

    echo "To: [email protected]"

    echo "Subject: The Subject"

    echo "Content-Type: text/html"

    echo

    cat mail.html

) | sendmail -t

bash子shell的使用避免了創建臨時文件的麻煩。


查看完整回答
反對 回復 2019-12-05

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號