pipeline { agent any stages { stage('Sending email') { steps { mail body: "$Message", cc: 'piozim4@st.amu.edu.pl', subject: 'ML workshops 2020 - s452111', to: 'tomasz.zietkiewicz@amu.edu.pl' } } } }