11 lines
239 B
Plaintext
11 lines
239 B
Plaintext
|
pipeline {
|
||
|
agent any
|
||
|
|
||
|
stages {
|
||
|
stage('Mail') {
|
||
|
steps {
|
||
|
emailext body: '${message}', subject: 'Linki do projektów - Warsztaty', to: 'tomasz.zietkiewicz@amu.edu.pl'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|