s152483-notify/Jenkinsfile

9 lines
177 B
Plaintext
Raw Normal View History

2020-04-03 14:52:03 +02:00
pipeline {
stages {
stage('mail') {
steps {
emailext body: 'Test', subject: 'Test', to: 'lookszym@gmail.com'
}
}
}
}