s416251-mlworkshops/s416251-notify

11 lines
247 B
Plaintext

pipeline {
agent any
stages {
stage('Mail') {
steps {
emailext body: '${message}', subject: 'Uczenie maszynowe - warsztaty - s416251', to: 'tomasz.zietkiewicz@amu.edu.pl'
}
}
}
}