From 501851b690224df9894d55a9f9b1129c96605a46 Mon Sep 17 00:00:00 2001 From: Bram Prieshof Date: Tue, 5 Jan 2021 01:59:36 +0100 Subject: [PATCH] set mail as comment --- jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jenkinsfile b/jenkinsfile index ce4f26f..d4572a9 100644 --- a/jenkinsfile +++ b/jenkinsfile @@ -15,8 +15,8 @@ pipeline { // Cleaning WorkSpace cleanWs() // send Mail - emailext body: '$DEFAULT_CONTENT', recipientProviders: [culprits()], subject: '$DEFAULT_SUBJECT Culprits', to: 'bramm.p11@gmail.com' - emailext body: '$DEFAULT_CONTENT', recipientProviders: [requestor()], subject: '$DEFAULT_SUBJECT Requestor', to: 'bramm.p11@gmail.com' + //Send To person to make commit emailext body: '$DEFAULT_CONTENT', recipientProviders: [culprits()], subject: '$DEFAULT_SUBJECT', to: 'bramm.p11@gmail.com' + //Send To static addres emailext body: '$DEFAULT_CONTENT', subject: '$DEFAULT_SUBJECT', to: 'bramm.p11@gmail.com' } } }