You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I have a code for sending a custom email as post function with scriptrunner. When the agents add comments, the code shows the mostRecentComment. When the comments are written in Greek language, nothing appears. Is there anything that i can add to my code in order to support Greek language?
<% if (mostRecentComment)
out << "<b><i><font color=red>${mostRecentComment}</font></b></i>"
%>
When the issue is open and agents add comments, Jira send an email (default settings) and all Greek comments are shown correctly. Maybe scriptrunner works differently.
I never tried this, but make sure that your code is capable of handling UTF-8 otherwise the characters may not render at all. Also, any language pack required to render Greek language?
Hi Claudio, thanks for the reply. I managed to solve it by moving my post function after the fire of the last event and changed my code as shown below:
<% if (mostRecentComment)
out << "<b><i><font color=red>" << mostRecentComment
%> </font></b></i>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.