pipeline { agent any stages { stage('Mail') { steps { emailext body: '${message}', subject: 'Linki do projektów - Warsztaty', to: 'tomasz.zietkiewicz@amu.edu.pl' } } } }