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