- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2022 06:20 AM
Hi,
we get these unwanted line breaks in our e-mail notifications
has anyone experienced and solved this before ?
Solved! Go to Solution.
- Labels:
-
Incident Management
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2022 06:58 AM
explanations:
The word-break
property specifies how words should break when reaching the end of a line.
break-all:To prevent overflow, word may be broken at any character
Hope this helps
mark the answer correct if this helps you
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2022 06:28 AM
if yes check for <br> tags or any styles that youmight have applied
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2022 06:39 AM
yes but there is nothing in the script itself
(function runMailScript(current, template, email, email_action, event) {
//resolution notes same as close notes
var userRecipient = email_action.recipient_fields.toString().split(',');
template.print(trMessage('Resolution Notes',userRecipient,current,email_action, event ));
})(current, template, email, email_action, event);
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2022 06:54 AM
it seems to be working if i open up the HTML source code and remove this part "word-break: break-all"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2022 06:58 AM
explanations:
The word-break
property specifies how words should break when reaching the end of a line.
break-all:To prevent overflow, word may be broken at any character
Hope this helps
mark the answer correct if this helps you