s452111-mlworkshops/Jenkinsfile_notify

13 lines
249 B
Plaintext

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'
}
}
}
}