From 7cc10ed27746028285b40a4bf97d8e731571fc27 Mon Sep 17 00:00:00 2001 From: Rob Winch Date: Wed, 5 Aug 2020 14:11:41 -0500 Subject: [PATCH] Fix Email notifications --- Jenkinsfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index c3d5bb6c45..96dedf6129 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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" + ) } } }