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