Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
titleAvoiding notification on customer's own comment - option A
linenumberstrue
#if ($context.currentUserEmail != $issue.fields.reporter.emailAddress)

   Your current template as is...

#end


it will ensure that the notification will render only when it is sent by non-reporter.

Oror, alternatively, you can do the following:

...

Code Block
titleAvoiding notification on customer's own comment - option B
linenumberstrue
#if ($context.currentUserEmail.endsWith("@yourdomainname.com"))
    
    Your current template as is...

#end


The snippet above will check that the action was performed by a user with specific email domain name. It works, because, normally, your agents' emails are within one specific domain, while your customers are in other. Replace "yourdomainname.com" with a domain that is used by your organisation.