pipeline { agent any stages { stage('Mail') { steps { emailext body: '${message}', subject: 'Uczenie maszynowe - warsztaty - s416251', to: 'tomasz.zietkiewicz@amu.edu.pl' } } } }