Skip to main content
Solved

Emailer - Improve detection of HTML content in message body. (FMEENGINE-86584)

  • August 6, 2025
  • 3 replies
  • 69 views

bubblebeb
Contributor
Forum|alt.badge.img+6

I have an emailer in a routine which has html content and it has been working fine for years. 

I have just updated the emailer package and it is now emailing all the html code to the recipient rather than rendering the email using the code. 

I noticed in the change log that this version has “Improve detection of HTML content in message body. (FMEENGINE-86584)” but it looks like it has less detection of HTML

has anyone else come across this issue and how to resolve it. 

There doesn't appear to be any guidance on how to manage this change in the package / transformer. 

Best answer by alexbiz

Could you try wrapping your current markup in a complete structure, e.g.:

<html>

  <body>

    …your existing content…

  </body>

</html>



That should let the package recognize the body as HTML and render it instead of sending the raw code.

This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.

3 replies

alexbiz
Influencer
Forum|alt.badge.img+28
  • Influencer
  • August 6, 2025

Hey !

Can you share the HTML you’re using ?


bubblebeb
Contributor
Forum|alt.badge.img+6
  • Author
  • Contributor
  • August 6, 2025

<font face="Roboto Black"> 
<p style="font-size: 13px">
PLEASE DO NOT IGNORE. <br>
PLEASE DO NOT REPLY DIRECT TO THIS EMAIL.
<br><br>
<font face="Roboto Light"> 
<p style="font-size: 13px">
Dear @Value(UserName)
<br>
Please find attached the report. <br>
This report is to help you see where your time is being logged to each month and give you the information to reallocate time to chargeable projects were possible.<br><br>
If you find errors or anomalies in this data please discuss it with your line manager in the first instance. <br>
Many thanks for your assistance. <br>
Regards <br>
 


alexbiz
Influencer
Forum|alt.badge.img+28
  • Influencer
  • Best Answer
  • August 6, 2025

Could you try wrapping your current markup in a complete structure, e.g.:

<html>

  <body>

    …your existing content…

  </body>

</html>



That should let the package recognize the body as HTML and render it instead of sending the raw code.