1

メール本文に html URL タグを追加しようとしています。以下のように使用しましたが、

: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 でリンクを作成するには、フィルターを使用する必要がありますか?

前もって感謝します。

4

1 に答える 1

0

これは、デフォルトでプレーン テキストのメールを送信しているためです。

Riemann は電子メールの送信を Postal に委ねています。HTML 電子メールの送信方法については、こちらを参照してください。

于 2015-12-13T12:59:29.360 に答える