This commit is contained in:
KVKR31 2023-08-03 17:45:16 +05:30
parent 37a87e0294
commit 0c57034092

8
Jenkinsfile vendored
View file

@ -31,13 +31,13 @@ pipeline {
}
post {
success {
mail subject: 'your project is effective'
body: 'your project is effective'
mail subject: 'your project is effective',
body: 'your project is effective',
to: 'vinod@gmail.com'
}
failure {
mail subject: 'your project is failure'
body: 'your project is defective'
mail subject: 'your project is failure',
body: 'your project is defective',
to: 'vinod@gmail.com'
}
}