pipeline { agent any stages { stage('Send email') { steps { emailext body: '${message}', subject: 'Testowy', to: 'marszc13@st.amu.edu.pl' } } } }