【发布时间】:2014-11-28 12:04:43
【问题描述】:
我正在使用 Mule 发送电子邮件。我需要为我发送的文本添加格式。 邮件的内容是有效负载,其中包含我在 Java 方法中形成的字符串,并使用表达式转换器发送到流。 我需要为该字符串添加格式:粗体、下划线、颜色...... 我该怎么做?
这是我的流程的摘录:
<expression-transformer expression="#[com.generateText4Email(payload)]" doc:name="mailText"/>
<smtp:outbound-endpoint host="${smtp.host}"
responseTimeout="10000" doc:name="SMTP" connector-ref="smtpConnector"
from="${smtp.from}" port="${smtp.port}" subject="Invoice"
to="mail@mail.com" />
我试过这个,但它不起作用。
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"><head><title>Email</title></head><body style="font-family:'Century Gothic'"><h1 style="text-align:center;"> company </h1><h2 style="font-size:14px;">Name : name <br />Company : arch <br />Email : qqq@aaaa.com</h2><p>fin</p></body></html>
提前致谢。
【问题讨论】:
标签: java email smtp format mule