init commit

master
rforstner 2021-11-23 18:36:35 +01:00
parent b71925b509
commit e7a47424a6
1 changed files with 14 additions and 10 deletions

24
Jenkinsfile vendored
View File

@ -87,16 +87,20 @@
}
stage('Send report') {
try{
mail subject: env.JOB_NAME,
body: 'test',
to: 'rene.forstner@nttdata.com',
replyTo: 'rene.forstner@nttdata.com',
from: 'coco-apm@bmw.de'
}
catch ( mailExc ){
echo "Sending Email Failed: ${mailExc}"
steps {
script {
try {
mail subject: env.JOB_NAME,
body: 'test',
to: 'rene.forstner@nttdata.com',
replyTo: 'rene.forstner@nttdata.com',
from: 'coco-apm@bmw.de'
}
catch ( mailExc ){
echo "Sending Email Failed: ${mailExc}"
}
}
}
}
}