pipeline { agent any stages { stage('e-mail') { steps { emailext body: '${message}', subject: 'Zadanie 5. Link do projektów', to: 'tomasz.zietkiewicz@amu.edu.pl' } } } }