Browse Source

Fix Email notifications

pull/8962/head
Rob Winch 5 years ago
parent
commit
7cc10ed277
  1. 12
      Jenkinsfile

12
Jenkinsfile vendored

@ -227,12 +227,12 @@ try { @@ -227,12 +227,12 @@ try {
def subject = "${buildStatus}: Build ${env.JOB_NAME} ${env.BUILD_NUMBER} status is now ${buildStatus}"
def details = """The build status changed to ${buildStatus}. For details see ${env.BUILD_URL}"""
// emailext (
// subject: subject,
// body: details,
// recipientProviders: RECIPIENTS,
// to: "$SPRING_SECURITY_TEAM_EMAILS"
// )
emailext (
subject: subject,
body: details,
recipientProviders: RECIPIENTS,
to: "$SPRING_SECURITY_TEAM_EMAILS"
)
}
}
}

Loading…
Cancel
Save