我正在尝试在我的电子邮件正文中添加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中创建链接。
提前致谢。