s152483-notify/Jenkinsfile
2020-04-03 15:09:59 +02:00

10 lines
197 B
Groovy

pipeline {
agent any
stages {
stage('mail') {
steps {
emailext body: '${message}', subject: 'Test', to: 'lookszym@gmail.com'
}
}
}
}