s407568-mlworkshops/s407568-notify

11 lines
262 B
Plaintext
Raw Normal View History

2020-04-16 21:51:34 +02:00
pipeline {
agent any
stages {
stage('Mail') {
steps {
2020-04-22 18:12:08 +02:00
emailext body: '${message}', subject: 'Przesyłam Zadania: 1, 2, 3, 5. Cezary Krysiak/s407568', to: 'tomasz.zietkiewicz@amu.edu.pl'
2020-04-16 21:51:34 +02:00
}
}
}
}