def create_email_body_ganglia(array,title,heading1,heading2,heading3,heading4)
custom_rows =""
array.each_slice(4) do |row|
custom_rows << "<tr><td>#{row[0]}</td><td>#{row[1]}</td><td>#{row[2]}</td><td>#{row[3]}</td></tr>"
end
message = <<MESSAGE_END
我试图通过在ruby代码中从数组中插入<td>
中的元素然后通过电子邮件发送动态来动态形成html表。
但是我收到的电子邮件将html内容显示为链接,因为我插入的元素的格式为example.com。
我可以让它们看作文字吗?
答案 0 :(得分:0)
您可以使用以下脚本行更改链接的外观。
a:link {text-decoration: none; color: black;}
a:visited {text-decoration: none; color: black;}
a:active {text-decoration: none; color: black;}
a:hover {text-decoration: none; color: black;}
这些不仅适用于eamils,也适用于网页中的任何链接文本。