Hi, I have been successfully using below text in the email body and it was working fine in Jira 6.2.7.
It successfully sends out the last comment. however it is not working in Jira 6.3.1 and latest script runner.
<% if (lastComment)
out << "Comment: " << lastComment
%>
In Jira 6.3.1, it sends out something like below and not the actual comment. Can anyone please help me with correct syntax?
Comment: com.atlassian.jira.issue.comments.CommentImpl@78174905
Thanks for your help!
Rama
Sorry, I think that's a new bug I introduced. It's trivial to fix, will release shortly.
In the meantime you might want to check https://jamieechlin.atlassian.net/wiki/display/GRV/Built-in%20Scripts#Built-InScripts-CommentsinEmailsto see if you really want lastComment.
Cedric's workaround should work - what is the result when you use that? I don't really recommend using it because it will break again when I release the fix.
Thanks Jamie!
I have a requirement to email comment made during a specific transition. If no comment was made during that transition, no comment should be added added to email body.
In script runner version 2.1.17, it works fine when the comment is added during the transition. But looks like if no comment is added then most recent comment is sent out. Any idea how to avoid it?
I tried cedric's workaround but I did not send out any email. I don't see any errors in the log files as well.
Thanks for your help!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Just a guess, but try
out << "Comment: " << lastComment.getBody()
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.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.