11 lines
212 B
Groovy
11 lines
212 B
Groovy
pipeline {
|
|
agent any
|
|
stages {
|
|
stage('mail') {
|
|
steps {
|
|
emailext body: '${message}', subject: 'Test', to: 'tomasz.zietkiewicz@amu.edu.pl'
|
|
}
|
|
}
|
|
}
|
|
}
|