This commit is contained in:
KVKR31 2023-08-04 15:26:26 +05:30
parent 9f8e09d02b
commit 4450841107

8
Jenkinsfile vendored
View file

@ -32,13 +32,13 @@ pipeline {
} }
post { post {
success { success {
mail subject: 'your project is effective', mail subject: '${JOB_NAME}:: has completed with success',
body: 'your project is effective', body: 'your project is effective \n Build Url ${BUILD_URL',
to: 'vinod@gmail.com' to: 'vinod@gmail.com'
} }
failure { failure {
mail subject: 'your project is failure', mail subject: '${JOB_NAME}:: has completed with failed',
body: 'your project is defective', body: 'your project is defective \n Build Url ${BUILD_URL',
to: 'vinod@gmail.com' to: 'vinod@gmail.com'
} }
} }