我在/tmp folder
下面有一个html文件chart.html file
当你打开html file
我有一个shell脚本,用于将chart.html
文件作为附件发送到包含正文消息的电子邮件中。
问题陈述: -
是否可以在电子邮件正文中发送html文件的这个彩色图像(当你打开它时)?这样人们就可以在电子邮件正文中看到这个图像,而不是打开附件文件。以下是我用于在带有正文消息的电子邮件中发送附件的命令 -
mailx -s "LIP Data Quality Report for $DATE_YEST_FORMAT1" -r rj@host.com rj@host.com <<EOF
Data Successfully loaded into LIP_DATA_QUALITY table
Total Items Purchased: `echo $QUERY1 | awk '{print $1}'`
Total Items MissingorMismatch: `echo $QUERY1 | awk '{print $2}'`
Error Percentage: $QUERY2
$(uuencode /tmp/chart.html percentage_graph.html)
EOF
我需要在上面的命令中进行哪些更改才能在体内发送彩色图像。
答案 0 :(得分:3)
在21世纪包含图像的正确方法是使用MIME。你的信息基本上应该是
From: you <you@example.net>
To: recipient <victim@example.com>
Subject: well, say something
Mime-Version: 1.0
Content-type: multipart/related; boundary=foo
Often you have something about this being a MIME message here.
--foo
Content-type: text/html; charset=utf-8
Content-transfer-encoding: us-ascii
<html><yada yada><img src="cid:bar"></html>
--foo
Content-type: image/png
Content-id: bar
Content-transfer-encoding: base64
sdflkjsdflkjsdflkjsdflkjsdflksdfl=
--foo--
您还可以尝试使用text/plain
文字部分和Content-Disposition: inline
图片;然后,许多客户将在文本下方显示图像。
当然,如果你已经将它全部放在一个HTML文件中(如何使用图像?),那么只需将它与现有的MUA mutt
相关联,就应该只需要一个简单的命令行。