s416242_mlworkshops/s416242_notify

11 lines
242 B
Plaintext

pipeline {
agent any
stages {
stage('Mail') {
steps {
emailext body: '${message}', subject: 'UM - linki do projektów (s416242)', to: 'tomasz.zietkiewicz@amu.edu.pl'
}
}
}
}