s416239-mlworkshops/s416239-notify

11 lines
227 B
Plaintext

pipeline {
agent any
stages {
stage('Mail') {
steps {
emailext body: '${wiadomosc}', subject: 'Mail koncowy z warsztatow', to: 'monjan7@st.amu.edu.pl'
}
}
}
}