如何在 SIDDHI IO EMAIL 中发送电子邮件 html 模板?

How to send email html template in SIDDHI IO EMAIL?

我在 WSO2 中使用 siddhi。
在 siddhi 电子邮件中,有一个选项表明可以发送 html。据此我想有一种方法可以发送模板html。我想要这些是因为我需要一封更友好的电子邮件,而不仅仅是普通 txt 中的事件。 或更改电子邮件正文的内容。

@source(type='email', @map(type='xml'), username='receiver.account', password='account.password',content.type='text/html,)
    define stream inputStream (name string, age int, country string);

到目前为止,我还没有找到添加 html 的方法或添加它的位置。

要发送 HTML 电子邮件而不是 @map(type='xml'),请使用

@map(type = 'text', @payload("""
<html>
<body>
Hi {{name}} <br/>
Good luck with your email :) 
</body>
</html>
"""))

使用适当的电子邮件模板。