我想用我的grails應用程序發送電子郵件。它工作正常,但我需要的是我要格式化的電子郵件正文用粗體,斜體,子彈列表,文本顏色等等。我使用像如何在grails中格式化電子郵件正文?
<strong> Hello </strong>
HTML標記大膽
<br>
嘗試線路制動器等。但收到的郵件內容顯示html代碼本身。我如何解決這個問題?提前致謝。
sendMail {
async true
to toAddress
subject "New cycle initiated"
body "<p><span style='color:#ffffe0'><strong><span style='background-color:#ff0000'>Appraisal Initiated mail notification. This is a test mail</span></strong></span></p>"
}
這是我的代碼
包括您所使用發送電子郵件在你的問題中的代碼。 –
@joshua代碼包括 – user3339689
我收到了郵件中的相同html代碼 – user3339689