Intermittently Email body is in different languages for the same notificationIssue Intermittently Email body is in different languages for the same notification.CauseThis happens when mail scripts change the language of the content using the script include 'I18Utils' setLanguage() function but do not set it back to the original language.ResolutionFind all 'Notification Email scripts' that use the setLanguage() function from the script include 'I18Utils'. You should see statements like the one below: //languagevar lang = current.request.requested_for.preferred_language;//set languagevar util = new I18nUtils();util.setLanguage(lang); Check the scripts and make sure that they also contain another setLanguage() statement to reset the language to the original. //restores user's languageutil.setLanguage(g_user.getUserID().preferred_language);