1

我正在尝试使用 awk 命令以 html 表格格式发送邮件,如下所示:

(

echo "From: "

echo "Subject: testing of html table using awk"

awk 'BEGIN{print "<table>"} {print "<tr>";for(i=1;i<=NF;i++)print "<td>" $i"</td>";print  "</tr>"} END{print "</table>"}' file.tmp

) | sendmail xxx@yy.com

我的文件(file.tmp)包含如下:

AAA 1 1 1 1 0 0

SAP 1 1 1 1 0 0

RTTC 1 1 1 1 0 0

PGW 1 1 1 1 0 0

但是我没有收到 html 表格格式的邮件,而是收到了 html 代码本身。

AWK 命令是否正确?还是我错过了什么?

4

3 回答 3

6

您需要添加一个Content-type标题:

(
    echo "From: "
    echo "Subject: testing of html table using awk"
    echo "Content-type: text/html"
    echo
    awk 'BEGIN{print "<table>"} {print "<tr>";for(i=1;i<=NF;i++)print "<td>" $i"</td>";print  "</tr>"} END{print "</table>"}' file.tmp
) | sendmail xxx@yy.com
于 2013-11-12T11:19:42.163 回答
0

它已经是表格格式,唯一的问题是我们必须为表格指定样式。这对我有用awk ' BEGIN{ print "<!DOCTYPE html>\n<html>\n<head>\n<style>\ntable,th,td\n{\nborder:1px solid black ; \nborder-collapse:collapse;\n}\n</style>\n</head>\n<Body>\n<table>" } {print "<tr>" for(i=1;i<=NF;i++) print "<td>" $i"</td>" print "</tr>" } END{ print "\n</table>\n</Body>\n</html>\n" }' a.txt >> email.html; cat email.html | sendmail -t ananoymous@exampl.com

于 2014-03-10T09:27:26.030 回答
0

您需要指定用于解析 html 的内容类型。U 还可以为 awk 使用选项 -F 来指定分隔符(默认为空格)。

(
    echo "Subject: $subject"
    echo "Content-type: text/html"
    echo "To:" $emailAddress
    awk 'BEGIN{print "<table border=1 cellspacing=2 cellpadding=2> {print "<tr>";for(i=1;i<=NF;i++)print "<td>" $i"</td>";print  "</tr>"} END{print "</table>"}' $fileName
) | sendmail -t
于 2019-04-25T04:58:34.517 回答