避免在Rails Mailer中将Url视为超链接

时间:2014-10-17 09:32:58

标签: ruby-on-rails hyperlink mailer

我向用户发送邮件,其中包含指向其创建帖子的链接。

此链接应仅用于复制和粘贴,但它会自动作为蓝色下划线超链接提供。 有什么建议吗?

由于

<td width="440" height="50" bgcolor="#f5f5f5" style="border:1px solid #e3e3e3; display: block; margin:40px auto;">
  <div style="color:#666f67; font-size:16px; font-weight: 400; font-family:sans-serif; text-decoration: none; display:block; text-align:center; padding: 16px;">
        url
  </div>
</td>

2 个答案:

答案 0 :(得分:0)

Bootstrap库不包含在电子邮件中,因为它在常规视图中。如果您需要格式化电子邮件,则必须内联。例如:

<a href="" style="text-decoration: none; color: green">hello</a>

Checkout Mailchimp,他们有很多关于如何创建电子邮件模板的资源。

我希望这会有所帮助。

答案 1 :(得分:0)

我找到了另一种方法供将来参考,方法是将它放在输入字段中,只读#34;&#34;

<input type="text" value="www.mylink.com" readonly>