pipeline { agent any stages { stage('Mail') { steps { emailext body: '${message}', subject: 'Linki do projektów - Warsztaty', to: 'kamilzul1@gmail.com' } } } }