This is an automated email from the ASF dual-hosted git repository. zregvart pushed a commit to branch jenkins-pipeline in repository https://gitbox.apache.org/repos/asf/camel.git
commit 6c3d999b495d176871034a651ad0de6fe8817aa7 Author: Zoran Regvart <zregv...@apache.org> AuthorDate: Mon Feb 19 12:33:37 2018 +0100 CAMEL-11930: pipeline e-mail support Pipeline build should now send e-mail notifications. --- Jenkinsfile | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index ed79991..6a2b7c3 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -72,5 +72,16 @@ pipeline { } } } + + post { + changed { + emailext { + subject: '${DEFAULT_SUBJECT}', + to: 'zoran+camel...@regvart.com', + body: '${DEFAULT_CONTENT}', + recipientProviders: [[$class: 'CulpritsRecipientProvider']] + } + } + } } -- To stop receiving notification emails like this one, please contact zregv...@apache.org.