Table in the Notification-generated email appears different from the Preview Issue The table in the notification body is coming up at the bottom instead of its intended location in the email, despite appearing correctly in the 'Preview Notification'.The issue occurs for certain types of record tables used, affecting how the script renders the HTML.ReleaseNACauseWe compared the notification preview against the triggered email and found the table shifts to the bottom.We found that for certain types of record tables used, the rendering is different due to how the script renders the HTML.Upon reviewing the custom mail script, we noticed unbalanced `<tr>` and `<table>` tags. Email clients often "fix" invalid HTML by moving or nesting the table differently, resulting in the observed discrepancy.ResolutionCorrect the HTML generated by the custom mail script. Specifically, ensure every `<table>` has a matching `</table>`, and that each `<tr>` is properly opened and closed. Removing extra `<tr>` tags after a `</table>` is critical. Once valid HTML is produced, the table should consistently appear in the intended location, matching the Preview Notification output.