From 4450841107e6886333836ad0cbf815463e9a27bf Mon Sep 17 00:00:00 2001 From: KVKR31 Date: Fri, 4 Aug 2023 15:26:26 +0530 Subject: [PATCH] added --- Jenkinsfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 0f0a19c6a..681924a25 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -32,13 +32,13 @@ pipeline { } post { success { - mail subject: 'your project is effective', - body: 'your project is effective', + mail subject: '${JOB_NAME}:: has completed with success', + body: 'your project is effective \n Build Url ${BUILD_URL', to: 'vinod@gmail.com' } failure { - mail subject: 'your project is failure', - body: 'your project is defective', + mail subject: '${JOB_NAME}:: has completed with failed', + body: 'your project is defective \n Build Url ${BUILD_URL', to: 'vinod@gmail.com' } }