I can able to generate a email notification in html format will all details but when I tried to send via chinese get null in Email. Kindly provide me a suitable solution.
Kindly post your script! Otherwise how can we help you?
Please see Wiki - how to post code on this forum .
Your described problem is exactly the same as this thread - are you working with that user?
Change the email language in the email pipeline from English to Chinese based on the selected language.
I have added a script before the alarm notification block and written the script below.
# Step 1: Get the locale (defaults to 'en' if not set)
locale = alarmEvent.get("locale") or "en"
# Step 2: Extract common alarm event values
displayPath = alarmEvent.get("displayPath", "")
eventTime = system.date.format(alarmEvent.get("eventTime"), "dd:MM:yyyy - HH:mm:ss")
priority = alarmEvent.get("priā¦