Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Send a custom email on issue resolve as post function (scriptrunner). Comments in other languages?

Stefani Kaimakliotou January 10, 2018

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.

1 answer

Suggest an answer

Log in or Sign up to answer
0 votes
Claudio Ombrella January 24, 2018

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?

Stefani Kaimakliotou January 25, 2018

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>

Claudio Ombrella January 26, 2018

Good!

TAGS
AUG Leaders

Atlassian Community Events