@bigbinary/neeto-playwright-commons 1.17.2 → 1.17.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.cjs.js +1 -1
- package/index.cjs.js.map +1 -1
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -12164,7 +12164,7 @@ class MailerUtils {
|
|
|
12164
12164
|
...contentRecognitions,
|
|
12165
12165
|
};
|
|
12166
12166
|
const wrappedHtml = /<html[\s>]/i.test(emailBody)
|
|
12167
|
-
? emailBody
|
|
12167
|
+
? emailBody.replace(/\sxmlns="[^"]+"/g, "")
|
|
12168
12168
|
: basicHTMLContent(emailBody);
|
|
12169
12169
|
const document = new DOMParser().parseFromString(wrappedHtml, "text/html").documentElement;
|
|
12170
12170
|
const text = {
|