I\'m trying to set the recipients of the Email-ext (aka Editable Email Notficiation) to the owners of failed tests. Since the owners can\'t be calc
If you need to read list of recipients from file on remote agent, expand above answer with FilePath:
import javax.mail.Message
import javax.mail.internet.InternetAddress
fp = new FilePath(build.workspace, build.workspace.toString() + "/recipients.txt")
emails = fp.readToString().split("\n")
for (email in emails) {
msg.addRecipient(Message.RecipientType.TO, new InternetAddress(email))
}