s416239-mlworkshops/s416239-notify

11 lines
227 B
Plaintext
Raw Normal View History

2020-04-16 21:50:13 +02:00
pipeline {
agent any
stages {
stage('Mail') {
steps {
2020-04-16 22:09:26 +02:00
emailext body: '${wiadomosc}', subject: 'Mail koncowy z warsztatow', to: 'monjan7@st.amu.edu.pl'
2020-04-16 21:50:13 +02:00
}
}
}
}