diff --git a/Jenkinsfile b/Jenkinsfile index 29d7f8dae..a1921bbf2 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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' } }