-
Bug
-
Resolution: Fixed
-
Major
-
None
after upgrading from 2.38.2 to 2.39, html content in html email is not correct.
v2.38.2:
</head><body><h1>Compte rendu d'installation sur WMS11DEV</h1> <p> Veuillez trouver la liste des patchs installés sur l'environnement WMS11DEV : </p>
v 2.39:
</head><body><h1>Compte rendu d&apos;installation sur WMS11DEV</h1> <p> Veuillez trouver la liste des patchs installés sur l&apos;environnement WMS11DEV : </p>
the correct content is with
Compte rendu d'installation sur WMS11DEV
- is duplicated by
-
JENKINS-26711 email-ext plugin converting html tags
-
- Resolved
-
-
JENKINS-26648 Jelly script needs escapeHtml option
-
- Resolved
-
-
JENKINS-30140 quotes become &apos in html content
-
- Resolved
-
- is related to
-
JENKINS-35669 email-ext-plugin shows HTML entities as plaintext in HTML email output
-
- Closed
-
My guess is that it is this line:
doc.outputSettings(doc.outputSettings().prettyPrint(false).escapeMode(Entities.EscapeMode.xhtml));
The escapeMode was not there before. I have a different fix for this in that if no data-inline is present, then it won't process via Jsoup at all.