Which IIQ version are you inquiring about?
8.2p5
I am working on email templates and the emails are showing the html code of the text file. I am blanking on why this is happening. Can someone assist?
Example email output:
Blockquote
html>
style>
p {
text-align: left;
}
/style>
body>
p>You are required to complete a Certification for your direct reports./p>
*deleted the beginning brackets as it was not showing in this output.
Sriindugula
(Sri Veera Siva Kumar Indugula)
July 25, 2024, 4:42pm
2
Hi @Alyson_Trad
Please share the complete email template file.
Body in your email template should be something like below:
<html>
<style>
p {
text-align: left;
}
</style>
<body>
<p>You are required to complete a Certification for your direct reports.</p>
</body>
</html>
Thanks
lfmsp
(Luís Filipe Milhomem)
July 25, 2024, 5:06pm
3
Hello Alyson,
Are you using the Character Data to be interpreted by XML? It’s look like:
<![CDATA[
<p>YOUR TEXT/CODE HERE</p>
]]>
Anyway you can use this:
<html>
<p> You are requiered to complete a Certification for your direct reports.<p>
</html>
Regards.
vedeepak
(Deepak Vema)
July 25, 2024, 5:43pm
4
I am pretty sure that html & body tags are not mandatory in email templates. By default email template object has tag. Can you try below code?
<p style="text-align: left;">You are required to complete a Certification for your direct reports.</p>
Are you writing sent email to file or sending to some email box?
system
(system)
Closed
September 23, 2024, 7:35pm
6
This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.