如何在riemann的电子邮件正文消息中添加URL链接

时间:2015-12-11 10:40:38

标签: html clojure riemann

我正在尝试在我的电子邮件正文中添加html网址标记。我用过如下,

:body (fn [events] "Hello Team.\n Welcome \n  <a href=\"https://example.com/\">Link to my website</a>  \n * This is an automated e-mail and any responses to this e-mail will not be monitored \n Thank You!")

我的html标签无法识别。我得到如下的输出,

Hello Team, 
Welcome 
<a href="https://example.com/">Link to Kibana DashBoard</a>
 * This is an automated e-mail and any responses to this e-mail will not be monitored  Thank You!.

我是否需要使用任何过滤器在clojure中创建链接。

提前致谢。

1 个答案:

答案 0 :(得分:0)

这是因为默认情况下您发送纯文本电子邮件。

Riemann推迟邮寄发送电子邮件,请参阅here了解如何发送HTML电子邮件。