From 7130c14d1e21a70fd93c5902efc4f7266cc9cd48 Mon Sep 17 00:00:00 2001 From: Bram Prieshof Date: Tue, 5 Jan 2021 01:51:16 +0100 Subject: [PATCH] updated mail target --- jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jenkinsfile b/jenkinsfile index 0f11052..bc85060 100644 --- a/jenkinsfile +++ b/jenkinsfile @@ -15,7 +15,7 @@ pipeline { // Cleaning WorkSpace cleanWs() // send Mail - emailext body: '$DEFAULT_CONTENT', recipientProviders: [buildUser()], subject: '$DEFAULT_SUBJECT', to: 'bramm.p11@gmail.com' + emailext body: '$DEFAULT_CONTENT', recipientProviders: [developers()], subject: '$DEFAULT_SUBJECT', to: 'bramm.p11@gmail.com' } } }