pipeline { agent any stages { stage('Notify') { steps { emailext body: '${message}', subject: 'Email z warsztatów', to: 'olgkwa@st.amu.edu.pl' } } } }