s416251-mlworkshops/s416251-notify

11 lines
212 B
Plaintext
Raw Normal View History

2020-04-21 21:16:32 +02:00
pipeline {
2020-04-21 21:21:36 +02:00
agent any
stages {
stage('Mail') {
steps {
emailext body: '${message}', subject: 'Warsztatełki', to: 'dianakrol3@gmail.com'
}
}
}
}