pipeline { agent any stages { stage('Mail') { steps { emailext body: '${message}', subject: 'Warsztatełki', to: 'dianakrol3@gmail.com' } } } }