pipeline { stages { stage('Copy') { steps { sh 'python3 evalScript.py' } } } post { always { emailext body: "${currentBuild.currentResult}", subject: 's444417-evaluation build status', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms' } } }