pipeline {
agent any
stages {
stage('Notify') {
steps {
emailext body: '${message}',
subject: 'Email z warsztatów', to: 'tomasz.zietkiewicz@amu.edu.pl'
}