我正在尝试发送一封 HTML 电子邮件,该电子邮件将通过 Bat 接收!程序。
邮件是从 C# 代码发送的。我设置了IsBodyHtml = true;
。我的 HTML 代码是:
<html>
<head>
<title>Mail</title>
</head>
<body>
<map name="planetmap">
<area shape="rect" coords="20,29,303,155" href="http://mysite.com" alt="this is my site" />
<area shape="rect" coords="372,23,479,103" href="http://somesite.com/" alt="somesite" />
<area shape="rect" coords="35,345,169,408" href="anotherlink.com" alt="" />
<area shape="rect" coords="178,348,332,409" href="http://www.lastsite.com/" alt="lastsite" />
</map>
<img src="cid:mail" usemap ="#planetmap" border="0"/>
</body>
</html>
此邮件在 Outlook 中显示良好,但在 Bat!它只是一个图像(地图不起作用)。谁能告诉我我做错了什么?