使用 html 发送的电子邮件显然能够轻松包含指向 Web 资源的超链接。我想了解的是如何最好地将这些链接包含在电子邮件的明文部分?
这对垃圾邮件有影响吗?
例如,我们的 IT 管理系统会发送电子邮件,有时我们会遇到一位客户在垃圾邮件中收到系统消息。
系统处理票证并在更新或修改票证时通知用户,以便他们知道返回站点检查票证的状态。
HTML 部分类似于:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<div>Short description: can't see web content hosted on phoenix</div><div>Assigned to: .... </div>
<div>Assignment Group: ...</div>
<div>Priority: 4 - Standard</div>
<div>Click here to view:
<a href="https://<LINKTOTICKET>">LINK</a>-INC999999
</div>
<div>Ref:MSG951683</div>
</body>
</html>
明文部分类似于:
Short description: can't see web content hosted on phoenix
Assigned to: ...
Assignment Group: ...
Priority: 4 - Standard
Click here to view: LINK-INC999999
Ref:MSG951683
在此纯文本部分中,包含相同超链接的最合适方法是什么,以便用户可以轻松查看此链接,无论他们更喜欢纯文本还是 html 的电子邮件?