JQL functions were added to NotifyMe! in version 2.0.6
You can find issues with emails sent by using the specific NotifyMe! JQL functions.
mailedIssues()
Search for issues that have at least one sent email.
Syntax
mailedIssues()
Supported fields
Issue
Supported operators
IN, NOT IN
Unsupported operators
=, ~, != ,!~ , > , >= , < , <= IS , IS NOT ,WAS, WAS IN, WAS NOT, WAS NOT IN , CHANGED
Examples
Find all issues where an emails has been sent from issue in mailedIssues()
mailedIssuesBy()
Search for issues that have at least one sent email by the list of users passed as paremeter.
Syntax
mailedIssuesBy(username[,...])
Supported fields
Issue
Supported operators
IN, NOT IN
Unsupported operators
=, ~, != ,!~ , > , >= , < , <= IS , IS NOT ,WAS, WAS IN, WAS NOT, WAS NOT IN , CHANGED
Examples
Find all issues where an emails has been sent by the user Ernst or the user Admin issue in mailedIssuesBy(admin,Ernst)
mailedIssuesTo()
Search for issues that have at least one sent email to one of the addressed passed as paremeter (either in the field To or the field CC)
Syntax
mailedIssuesBy(address[,...])
Supported fields
Issue
Supported operators
IN, NOT IN
Unsupported operators
=, ~, != ,!~ , > , >= , < , <= IS , IS NOT ,WAS, WAS IN, WAS NOT, WAS NOT IN , CHANGED
Examples
Find all issues where an emails has been sent to admin@atsistemas.com or admin@yourcompany.com issue in mailedIssuesBy("admin@atsistemas.com","admin@yourcompany.com")