Skip to main content

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. 

Hey !

Can you share the HTML you’re using ?


<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>
 


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.


Reply