Email Notifications: NewLinesToHTML Option Removes Table Formatting in Email ScriptIssue When using the NewLinesToHTML option in an email script, table formatting (<table>) in the email body may be removed or rendered incorrectly. This happens because NewLinesToHTML converts newline characters (\n) into <br /> tags, which can break HTML structure.ReleaseApplies to All ReleasesCauseThe NewLinesToHTML option is designed to enhance readability by converting plain text line breaks into HTML line breaks (<br />). However, this feature does not distinguish between plain text and HTML, and can disrupt structured HTML like tables.Official Documentation – Handling Line Breaks in NotificationsResolutionTo avoid using NewLinesToHTML option when your email contains tables. Instead, manually replace newline characters in specific variables using JavaScript: yourTextVariable = yourTextVariable.replace("\n", "<br />"); For multiple newlines, use a global replace: yourTextVariable = yourTextVariable.replace(/\n/g, "<br />");