我有一个 html 文件,/tmp folder
当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
我需要在上面的命令中进行哪些更改才能在正文中发送这个彩色图像。