13 lines
249 B
Plaintext
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'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|