当用户询问时,我的应用程序需要发送生成的电子邮件。电子邮件发送没有问题(我在 Grails 中使用 Mail 插件)但是,里面有一行带有链接,这是整个邮件的目的。但是,在电子邮件中看不到它。代码是这样的:
'<head>'+
'<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>'+
'</head>'+
'<body>'+
'<table width="690px" height="390px;" border="0px;font-family:verdana">'+
'<tr>'+
'<td>'+
'<p style="font-size: 14px;line-height: 1.5;margin-bottom: 10px;margin-left: 25px;text-align: left;">Blahblahblah this is the URL:</p>'+
'</td>'+
'</tr>'+
'<tr>'+
'<td>'+
'<p style="font-size: 14px;line-height: 1.5;margin-bottom: 10px;margin-left: 25px;text-align: left;"><a href="http://www.myurl.com/promocion/verPromocion?promocion='+promocion.nombre+'&recomendador='+compradorInstance.id+'"> </a> </p>'+
'</td>'+
'</tr>'+
</table>
'</body>'
我可以看到 <"p"> 被绘制,因为链接应该是一个空白区域,但链接没有显示。有人知道为什么吗?谢谢你。