pipeline { agent any stages { stage('mail') { steps { emailext body: 'Test', subject: 'Test', to: 'lookszym@gmail.com' } } } }