s407568-mlworkshops/s407568-notify

11 lines
262 B
Plaintext

pipeline {
agent any
stages {
stage('Mail') {
steps {
emailext body: '${message}', subject: 'Przesyłam Zadania: 1, 2, 3, 5. Cezary Krysiak/s407568', to: 'tomasz.zietkiewicz@amu.edu.pl'
}
}
}
}