我有一个HTML生成的输出文件sample.html
,我需要通过邮件将内容作为正文发送。我也尝试过mail,mailx,mutt,但是我得到的输出如下。
我还使用以下命令进行测试。
cat filename.html | mailx -s "$(echo -e "REPORT: daily usage on \nContent-Type: text/html")" raam@abbc.com
mutt -e 'set Content-type="text/html"' sompl@abcx.com -s "testmail" < flename.html
<HTML><TABLE border=1><TH>filesize</TH><TH>UserList</TH>
<TR><TD>,</TD></TR>
<TR><TD>0,/staging/aaa</TD></TR>
<TR><TD>0,/staging/bbbb</TD></TR>
<TR><TD>0,/staging/lowlevel</TD></TR>
<TR><TD>0,/staging/highlevel</TD></TR>
因此,请协助我以正确的html表格格式获取输出。