This is an automated email from the ASF dual-hosted git repository. zregvart pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
commit 11842f545e63124ce14f187de7cc232da3d58905 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 03a61ba..7632ac3 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -72,5 +72,16 @@ pipeline { } } } + + post { + always { + 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.